git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2183 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
0672a430f7
commit
16855e1a4e
|
@ -39,7 +39,7 @@
|
|||
* @details The other bits are not defined and may be used as device-specific
|
||||
* option bits.
|
||||
*/
|
||||
#define PAL_MODE_MASK 0xF
|
||||
#define PAL_MODE_MASK 0x1F
|
||||
|
||||
/**
|
||||
* @brief After reset state.
|
||||
|
|
|
@ -87,7 +87,6 @@ typedef struct {
|
|||
list. */
|
||||
VirtualTimer *vt_prev; /**< @brief Last timer in the delta
|
||||
list. */
|
||||
systime_t vt_time; /**< @brief Must be initialized to -1. */
|
||||
volatile systime_t vt_systime; /**< @brief System Time counter. */
|
||||
} VTList;
|
||||
|
||||
|
|
|
@ -40,7 +40,6 @@ VTList vtlist;
|
|||
void vt_init(void) {
|
||||
|
||||
vtlist.vt_next = vtlist.vt_prev = (void *)&vtlist;
|
||||
vtlist.vt_time = (systime_t)-1;
|
||||
vtlist.vt_systime = 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -108,11 +108,12 @@
|
|||
change).
|
||||
- NEW: Added to the documentation more notes about interrupt handlers in
|
||||
the ARM7 port.
|
||||
- OPT: Removed an unused field in the VTList structure.
|
||||
- OPT: Speed optimizations of the STM32 SPI driver, improved latency.
|
||||
- OPT: Speed optimizations of the STM32 ADC driver.
|
||||
- CHANGE: The event APIs chEvtPend() and chEvtClear() have been renamed
|
||||
to chEvtAddFlags() and chEvtClearFlags() for consistency and correct
|
||||
English (which I am famous for...).
|
||||
English.
|
||||
- CHANGE: Added a parameter to the UART driver callbacks, the pointer to the
|
||||
driver itself.
|
||||
- CHANGE: In the UART driver now an error does not automatically brings the
|
||||
|
|
Loading…
Reference in New Issue