fix: compiler error

This commit is contained in:
2025-08-05 18:34:34 +03:00
parent a734cb72fc
commit 2ab8894d20
2 changed files with 3 additions and 3 deletions

4
port.c
View File

@@ -407,7 +407,7 @@
* the context is saved at the start of vPortYieldFromTick(). The tick
* count is incremented after the context is saved.
*/
void TIMER1_COMPA_vect( void ) __attribute__( ( signal, naked ) );
void TIMER1_COMPA_vect( void ) __attribute__( ( signal, naked, used ) );
void TIMER1_COMPA_vect( void )
{
vPortYieldFromTick();
@@ -420,7 +420,7 @@
* tick count. We don't need to switch context, this can only be done by
* manual calls to taskYIELD();
*/
void TIMER1_COMPA_vect( void ) __attribute__( ( signal ) );
void TIMER1_COMPA_vect( void ) __attribute__( ( signal, used ) );
void TIMER1_COMPA_vect( void )
{
xTaskIncrementTick();

View File

@@ -1 +1 @@
1.0.0
1.0.1