File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ jobs:
121121 make
122122
123123 - name : " Set SOC target"
124- run : echo "SOC_TARGET=${{ startsWith(matrix.soc, 'esp32p4') && 'esp32p4' || matrix.soc }}" >> $GITHUB_ENV
124+ run : echo "SOC_TARGET=${{ startsWith(matrix.soc, 'esp32p4') && 'esp32p4' || startsWith(matrix.soc, 'esp32c2') && 'esp32c2' || matrix.soc }}" >> $GITHUB_ENV
125125
126126 - name : " Use release defaults"
127127 if : startsWith(github.ref, 'refs/tags/')
@@ -137,6 +137,13 @@ jobs:
137137 run : |
138138 cp sdkconfig.defaults.${{ matrix.soc }} sdkconfig.defaults.esp32p4
139139
140+ - name : " Enable USB serial for esp32c2_cdc"
141+ if : matrix.soc == 'esp32c2_cdc'
142+ shell : bash
143+ working-directory : ./src/platforms/esp32/
144+ run : |
145+ echo "CONFIG_USE_USB_SERIAL=y" >> sdkconfig.defaults
146+
140147 - name : " Handle esp32p4 c6 variants - add wifi_remote component"
141148 if : matrix.soc == 'esp32p4_c6' || matrix.soc == 'esp32p4_pre_c6'
142149 shell : bash
You can’t perform that action at this time.
0 commit comments