mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 10:08:33 -04:00
Replace standard types with stdint.h types.
Replace #define types with typedefs. Rename all typedefs to have a _t extension. Add #defines to automatically convert old FreeRTOS specific types to their new names (with the _t).
This commit is contained in:
parent
f292243dcf
commit
3e20aa7d60
190 changed files with 4940 additions and 4603 deletions
|
@ -128,8 +128,8 @@ void portSetupTick( void )
|
|||
/*
|
||||
* Set the compare match value.
|
||||
*/
|
||||
CCPR1H = ( unsigned char ) ( ( portTIMER_COMPARE_VALUE >> 8 ) & 0xff );
|
||||
CCPR1L = ( unsigned char ) ( portTIMER_COMPARE_VALUE & 0xff );
|
||||
CCPR1H = ( uint8_t ) ( ( portTIMER_COMPARE_VALUE >> 8 ) & 0xff );
|
||||
CCPR1L = ( uint8_t ) ( portTIMER_COMPARE_VALUE & 0xff );
|
||||
|
||||
/*
|
||||
* Set Compare Special Event Trigger Mode
|
||||
|
@ -159,8 +159,8 @@ void portSetupTick( void )
|
|||
/*
|
||||
* Clear the time count
|
||||
*/
|
||||
TMR1H = ( unsigned char ) 0x00;
|
||||
TMR1L = ( unsigned char ) 0x00;
|
||||
TMR1H = ( uint8_t ) 0x00;
|
||||
TMR1L = ( uint8_t ) 0x00;
|
||||
|
||||
/*
|
||||
* Setup the timer
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue