XPROGTarget_SendByte(PDI_CMD_STCS | PDI_RESET_REG); \r
XPROGTarget_SendByte(PDI_RESET_KEY);\r
\r
+ /* Lower direction change guard time to 8 USART bits */\r
+ XPROGTarget_SendByte(PDI_CMD_STCS | PDI_CTRL_REG); \r
+ XPROGTarget_SendByte(0x04);\r
+\r
/* Enable access to the XPROG NVM bus by sending the documented NVM access key to the device */\r
XPROGTarget_SendByte(PDI_CMD_KEY); \r
for (uint8_t i = sizeof(PDI_NVMENABLE_KEY); i > 0; i--)\r
}\r
else\r
{\r
- #if 0\r
/* Enable TPI programming mode with the attached target */\r
XPROGTarget_EnableTargetTPI();\r
\r
+ /* Lower direction change guard time to 8 USART bits */\r
+ XPROGTarget_SendByte(TPI_CMD_SSTCS | TPI_CTRL_REG);\r
+ XPROGTarget_SendByte(0x04); \r
+ \r
/* Enable access to the XPROG NVM bus by sending the documented NVM access key to the device */\r
XPROGTarget_SendByte(TPI_CMD_SKEY); \r
for (uint8_t i = sizeof(TPI_NVMENABLE_KEY); i > 0; i--)\r
\r
/* Wait until the NVM bus becomes active */\r
NVMBusEnabled = TINYNVM_WaitWhileNVMBusBusy();\r
- #endif\r
- NVMBusEnabled = true;\r
}\r
\r
Endpoint_Write_Byte(CMD_XPROG);\r
#endif\r
\r
/** Number of cycles between each clock when software USART mode is used */\r
- #define BITS_BETWEEN_USART_CLOCKS 100\r
+ #define BITS_BETWEEN_USART_CLOCKS 200\r
\r
/** Total number of bits in a single USART frame */\r
#define BITS_IN_USART_FRAME 12\r