Skip to content

Commit eacfdf6

Browse files
committed
fix(ci): add ESP_ERR_NOT_FOUND to fuzz stubs
mmwave_sensor stub returns ESP_ERR_NOT_FOUND which wasn't defined in the minimal esp_stubs.h for host-based fuzz testing. Co-Authored-By: claude-flow <ruv@ruv.net>
1 parent c3393e1 commit eacfdf6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

firmware/esp32-csi-node/test/stubs/esp_stubs.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
typedef int esp_err_t;
2121
#define ESP_OK 0
2222
#define ESP_FAIL (-1)
23-
#define ESP_ERR_NO_MEM 0x101
23+
#define ESP_ERR_NO_MEM 0x101
2424
#define ESP_ERR_INVALID_ARG 0x102
25+
#define ESP_ERR_NOT_FOUND 0x105
2526

2627
/* ---- esp_log.h ---- */
2728
#define ESP_LOGI(tag, fmt, ...) ((void)0)

0 commit comments

Comments
 (0)