mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
update interrupt vector names for ATMega32 (#196)
This commit is contained in:
parent
94ffcac27c
commit
bdb38d85dc
|
@ -402,8 +402,8 @@ uint8_t ucHighByte, ucLowByte;
|
||||||
* the context is saved at the start of vPortYieldFromTick(). The tick
|
* the context is saved at the start of vPortYieldFromTick(). The tick
|
||||||
* count is incremented after the context is saved.
|
* count is incremented after the context is saved.
|
||||||
*/
|
*/
|
||||||
void SIG_OUTPUT_COMPARE1A( void ) __attribute__ ( ( signal, naked ) );
|
void TIMER1_COMPA_vect( void ) __attribute__ ( ( signal, naked ) );
|
||||||
void SIG_OUTPUT_COMPARE1A( void )
|
void TIMER1_COMPA_vect( void )
|
||||||
{
|
{
|
||||||
vPortYieldFromTick();
|
vPortYieldFromTick();
|
||||||
asm volatile ( "reti" );
|
asm volatile ( "reti" );
|
||||||
|
@ -415,8 +415,8 @@ uint8_t ucHighByte, ucLowByte;
|
||||||
* tick count. We don't need to switch context, this can only be done by
|
* tick count. We don't need to switch context, this can only be done by
|
||||||
* manual calls to taskYIELD();
|
* manual calls to taskYIELD();
|
||||||
*/
|
*/
|
||||||
void SIG_OUTPUT_COMPARE1A( void ) __attribute__ ( ( signal ) );
|
void TIMER1_COMPA_vect( void ) __attribute__ ( ( signal ) );
|
||||||
void SIG_OUTPUT_COMPARE1A( void )
|
void TIMER1_COMPA_vect( void )
|
||||||
{
|
{
|
||||||
xTaskIncrementTick();
|
xTaskIncrementTick();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue