fix(ieee802154): fix linker error due to static function being inlined

When the compiler decides to inline a static function, linker script
generator will complain about the missing function.
This commit is contained in:
Ivan Grokhotkov
2024-07-12 14:18:56 +02:00
committed by zwx
parent 26dabfd177
commit 4a451e485c
4 changed files with 7 additions and 5 deletions

View File

@@ -2,6 +2,7 @@
archive: libieee802154.a
entries:
if IEEE802154_ENABLED = y:
# When adding static functions here, add IEEE802154_NOINLINE attribute to them
esp_ieee802154_ack: ieee802154_ack_config_pending_bit (noflash)
esp_ieee802154_dev: ieee802154_rx_frame_info_update (noflash)
esp_ieee802154_dev: ieee802154_isr (noflash)