diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-15 13:49:19 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-15 14:40:27 -0600 |
commit | 4f567b6127cb15ec64a93f9fd340aaff493680a3 (patch) | |
tree | a479f7ec54772ae685f8e2dd34cd1b278a3df805 | |
parent | 2ae702af39d370cede1b32a4b507df75b3438ddb (diff) |
measurestack: Learn about flash_range_program_func
-rw-r--r-- | build-aux/measurestack/app_plugins.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build-aux/measurestack/app_plugins.py b/build-aux/measurestack/app_plugins.py index 1fb0355..32b4e0d 100644 --- a/build-aux/measurestack/app_plugins.py +++ b/build-aux/measurestack/app_plugins.py @@ -554,6 +554,8 @@ class PicoSDKPlugin: return [QName("rom_func_lookup(ROM_FUNC_FLASH_RANGE_ERASE)")], False case "flash_flush_cache_func": return [QName("rom_func_lookup(ROM_FUNC_FLASH_FLUSH_CACHE)")], False + case "flash_range_program_func": + return [QName("rom_func_lookup(ROM_FUNC_FLASH_RANGE_PROGRAM)")], False case "rom_table_lookup": return [QName("rom_hword_as_ptr(BOOTROM_TABLE_LOOKUP_OFFSET)")], False if "/flash.c:" in loc and "boot2_copyout" in line: |