fix: compiler error

This commit is contained in:
2025-08-05 18:34:34 +03:00
parent a734cb72fc
commit 56c7d2db70
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 * 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 TIMER1_COMPA_vect( void ) __attribute__( ( signal, naked ) ); void TIMER1_COMPA_vect( void ) __attribute__( ( signal, naked, used ) );
void TIMER1_COMPA_vect( void ) void TIMER1_COMPA_vect( void )
{ {
vPortYieldFromTick(); vPortYieldFromTick();
@@ -420,7 +420,7 @@
* 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 TIMER1_COMPA_vect( void ) __attribute__( ( signal ) ); void TIMER1_COMPA_vect( void ) __attribute__( ( signal, used ) );
void TIMER1_COMPA_vect( void ) void TIMER1_COMPA_vect( void )
{ {
xTaskIncrementTick(); xTaskIncrementTick();

View File

@@ -1 +1 @@
1.0.0 1.0.1