projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Use default NVM base address in the AVRISP programmer project in case the host progra...
[pub/USBasp.git]
/
Projects
/
AVRISP
/
Lib
/
PDITarget.c
diff --git
a/Projects/AVRISP/Lib/PDITarget.c
b/Projects/AVRISP/Lib/PDITarget.c
index
1bbb4d5
..
a8fe21e
100644
(file)
--- a/
Projects/AVRISP/Lib/PDITarget.c
+++ b/
Projects/AVRISP/Lib/PDITarget.c
@@
-39,14
+39,15
@@
#if defined(ENABLE_PDI_PROTOCOL) || defined(__DOXYGEN__)
\r
\r
/** Flag to indicate if the USART is currently in Tx or Rx mode. */
\r
#if defined(ENABLE_PDI_PROTOCOL) || defined(__DOXYGEN__)
\r
\r
/** Flag to indicate if the USART is currently in Tx or Rx mode. */
\r
-volatile bool IsSending;
\r
+volatile bool
IsSending;
\r
\r
#if !defined(PDI_VIA_HARDWARE_USART)
\r
/** Software USART raw frame bits for transmission/reception. */
\r
\r
#if !defined(PDI_VIA_HARDWARE_USART)
\r
/** Software USART raw frame bits for transmission/reception. */
\r
-volatile uint16_t SoftUSART_Data;
\r
+volatile uint16_t
SoftUSART_Data;
\r
\r
/** Bits remaining to be sent or received via the software USART - set as a GPIOR for speed. */
\r
\r
/** Bits remaining to be sent or received via the software USART - set as a GPIOR for speed. */
\r
-#define SoftUSART_BitCount GPIOR2
\r
+#define SoftUSART_BitCount GPIOR2
\r
+
\r
\r
/** ISR to manage the software USART when bit-banged USART mode is selected. */
\r
ISR(TIMER1_COMPA_vect, ISR_BLOCK)
\r
\r
/** ISR to manage the software USART when bit-banged USART mode is selected. */
\r
ISR(TIMER1_COMPA_vect, ISR_BLOCK)
\r