mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
81a641d437
since the linker placement of the hal functions are controlled by the Kconfig in the driver component, we should create the linker.lf in the driver component, not in the hal component.
18 lines
592 B
Plaintext
18 lines
592 B
Plaintext
[mapping:gptimer_driver]
|
|
archive: libdriver.a
|
|
entries:
|
|
if GPTIMER_CTRL_FUNC_IN_IRAM = y:
|
|
gptimer: gptimer_set_raw_count (noflash)
|
|
gptimer: gptimer_get_raw_count (noflash)
|
|
gptimer: gptimer_get_captured_count (noflash)
|
|
gptimer: gptimer_set_alarm_action (noflash)
|
|
gptimer: gptimer_start (noflash)
|
|
gptimer: gptimer_stop (noflash)
|
|
|
|
[mapping:gptimer_hal]
|
|
archive: libhal.a
|
|
entries:
|
|
if GPTIMER_CTRL_FUNC_IN_IRAM = y:
|
|
timer_hal: timer_hal_set_counter_value (noflash)
|
|
timer_hal: timer_hal_capture_and_get_counter_value (noflash)
|