mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-29 05:38:42 +00:00
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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user