@@ -127,7 +127,7 @@ extern "C" {
127
127
// System Tick - Scheduler timer
128
128
// Prefer to use the Watchdog timer, but also Timer 0, 1, or 3 are ok.
129
129
130
- // #define portUSE_WDTO WDTO_15MS // portUSE_WDTO to use the Watchdog Timer for xTaskIncrementTick
130
+ // #define portUSE_WDTO WDTO_15MS // portUSE_WDTO to use the Watchdog Timer for xTaskIncrementTick
131
131
132
132
/* Watchdog period options: WDTO_15MS
133
133
WDTO_30MS
@@ -138,13 +138,13 @@ extern "C" {
138
138
139
139
*/
140
140
141
- #define portUSE_TIMER0 // portUSE_TIMER0 to use 8 bit Timer0 for xTaskIncrementTick
142
- // #define portUSE_TIMER1 // portUSE_TIMER1 to use 16 bit Timer1 for xTaskIncrementTick
143
- // #define portUSE_TIMER2 // portUSE_TIMER2 to use 8 bit Timer2 using 32,768Hz for xTaskIncrementTick
144
- // #define portUSE_TIMER3 // portUSE_TIMER3 to use 16 bit Timer3 for xTaskIncrementTick
141
+ // #define portUSE_TIMER0 // portUSE_TIMER0 to use 8 bit Timer0 for xTaskIncrementTick
142
+ // #define portUSE_TIMER1 // portUSE_TIMER1 to use 16 bit Timer1 for xTaskIncrementTick
143
+ #define portUSE_TIMER2 // portUSE_TIMER2 to use 8 bit Timer2 using 32,768Hz for xTaskIncrementTick
144
+ // #define portUSE_TIMER3 // portUSE_TIMER3 to use 16 bit Timer3 for xTaskIncrementTick
145
145
146
146
// Use Timer 2 for a Real Time Clock, if you have a 32kHz watch crystal attached.
147
- // #define portUSE_TIMER2_RTC // portUSE_TIMER2_RTC to use 8 bit RTC Timer2 for system_tick (not xTaskIncrementTick)
147
+ // #define portUSE_TIMER2_RTC // portUSE_TIMER2_RTC to use 8 bit RTC Timer2 for system_tick (not xTaskIncrementTick)
148
148
149
149
#if defined (portUSE_WDTO )
150
150
// xxx Watchdog Timer is 128kHz nominal, but 120 kHz at 5V DC and 25 degrees is actually more accurate, from data sheet.
@@ -166,20 +166,20 @@ extern "C" {
166
166
* Select WIZCHIP.
167
167
* You should select one, \b 5100, \b 5200 ,\b 5500 or etc. \n\n
168
168
*/
169
- #define _WIZCHIP_ 5500 // 5100, 5200, 5500
169
+ // #define _WIZCHIP_ 5500 // 5100, 5200, 5500
170
170
171
171
// #define portHD44780_LCD // define the use of the Freetronics HD44780 LCD (or other). Check include hd44780.h for (flexible) pin assignments.
172
- // #define portSD_CARD // define the use of the SD Card for Goldilocks 1284p
173
- // #define portRTC_DEFINED // RTC DS1307 / DS3231 implemented, therefore define.
174
- // #define portANALOGUE // Goldilocks Analogue Capabilities
175
- // #define portANALOGSHIELD // Digilent Analog Shield (only DAC implemented)
172
+ #define portSD_CARD // define the use of the SD Card for Goldilocks 1284p
173
+ // #define portRTC_DEFINED // RTC DS1307 / DS3231 implemented, therefore define.
174
+ // #define portANALOGUE // Goldilocks Analogue Capabilities
175
+ // #define portANALOGSHIELD // Digilent Analog Shield (only DAC implemented)
176
176
177
177
#define portSERIAL_BUFFER_RX 255 // Define the size of the serial receive buffer.
178
178
#define portSERIAL_BUFFER_TX 255 // Define the size of the serial transmit buffer, only as long as the longest text.
179
- #define portSERIAL_BUFFER portSERIAL_BUFFER_TX // just for compatibility with older programmes.
179
+ #define portSERIAL_BUFFER portSERIAL_BUFFER_TX // just for compatibility with older programmes.
180
180
181
- // #define portUSE_TIMER1_PWM // Define which Timer to use as the PWM Timer (not the tick timer).
182
- // though it is better to use Pololu functions, as they support 8x multiplexed servos.
181
+ // #define portUSE_TIMER1_PWM // Define which Timer to use as the PWM Timer (not the tick timer).
182
+ // though it is better to use Pololu functions, as they support 8x multiplexed servos.
183
183
184
184
#elif defined(__AVR_ATmega32U2__ ) || defined(__AVR_ATmega16U2__ ) || defined(__AVR_ATmega8U2__ )
185
185
// Arduino Serial I/O MCU Compatible notation.
0 commit comments