mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-04 05:13:51 -04:00
Check in the RX/GCC demo for backup purposes - this is not yet a working project.
This commit is contained in:
parent
0fcac53cf8
commit
ddf4f4eb1e
17 changed files with 1544 additions and 373 deletions
|
@ -71,8 +71,8 @@
|
|||
#include "queue.h"
|
||||
|
||||
/* Priorities at which the tasks are created. */
|
||||
#define configQUEUE_RECEIVE_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )
|
||||
#define configQUEUE_SEND_TASK_PRIORITY ( tskIDLE_PRIORITY + 2 )
|
||||
#define configQUEUE_RECEIVE_TASK_PRIORITY ( tskIDLE_PRIORITY + 2 )
|
||||
#define configQUEUE_SEND_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )
|
||||
|
||||
/* The rate at which data is sent to the queue, specified in milliseconds. */
|
||||
#define mainQUEUE_SEND_FREQUENCY_MS ( 500 / portTICK_RATE_MS )
|
||||
|
@ -215,3 +215,10 @@ void vApplicationIdleHook( void )
|
|||
{
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
/* The following two functions are here just to allow all three build
|
||||
configurations to use the same vector table. They are not used in this
|
||||
demo, but linker errors will result if they are not defined. They can
|
||||
be ignored. */
|
||||
void vT0_1InterruptHandler( void ) {}
|
||||
void vT2_3InterruptHandler( void ) {}
|
Loading…
Add table
Add a link
Reference in a new issue