Skip to content

Commit 7bb19c4

Browse files
committed
feat(esp_commands): Add tests to the esp_commands component
1 parent 65cf8c1 commit 7bb19c4

15 files changed

+536
-178
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ body:
3030
- dhara
3131
- eigen
3232
- esp_delta_ota
33+
- esp_commands
3334
- esp_encrypted_img
3435
- esp_jpeg
3536
- esp_lcd_qemu_rgb

.github/workflows/upload_component.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
dhara;
4343
eigen;
4444
esp_delta_ota;
45+
esp_commands;
4546
esp_encrypted_img;
4647
esp_lcd_qemu_rgb;
4748
esp_jpeg;

.idf_build_apps.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ manifest_file = [
77
"bdc_motor/.build-test-rules.yml",
88
"ccomp_timer/.build-test-rules.yml",
99
"coremark/.build-test-rules.yml",
10+
"esp_commands/.build-test-rules.yml",
1011
"esp_encrypted_img/.build-test-rules.yml",
1112
"esp_jpeg/.build-test-rules.yml",
1213
"esp_serial_slave_link/.build-test-rules.yml",

esp_commands/CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
idf_build_get_property(target IDF_TARGET)
22

33
set(srcs "esp_commands.c"
4-
"eps_commands_helpers.c")
4+
"esp_commands_helpers.c")
55

66
idf_component_register(
7-
SRCS "esp_commands.c" "eps_commands_helpers.c"
7+
SRCS ${srcs}
88
INCLUDE_DIRS include
99
PRIV_INCLUDE_DIRS private_include
10+
REQUIRES heap
1011
LDFRAGMENTS linker.lf)

0 commit comments

Comments
 (0)