-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Commit e70f4d3
Adds HW Serial CDC as IDF component example (#10262)
* feat(hw_cdc): creates documentation for the example
Adds a README file that exaplains the example.
* feat(hw_cdc): create cmake config file
Adds necessary CMakeLists.txt file to the project with the HW CDC defines that will enable it.
* feat(hw_cdc): create sdkconfig.defaults
Adds necessary and minimum sdkconfig settings in order to make Arduino run as IDF Compoenent.
* feat(hw_cdc): create cmake config file
Create the Arduino Sketch source code CMakeLists.txt file that will include all source code files and header files in the proejct.
* feat(hw_cdc): create main.cpp
Adds the minimum Arduino Sketch that will print "Hello World!" in the HW Serial USB CDC port.
* feat(hw_cdc): create idf_component.yml
Adds necessary ESP32 Registry information in order to make ESP32 Arduino to be automatically included in the project as an IDF component.
* feat(hw_cdc): update main.cpp
adds code to wait for the user to open the Serial Monitor
* feat(hw_cdc): formating text code
Applying Code style and formating.
* feat(hw_cdc): adds the example to idf_component.yml
Adds the example to the list of example in the ESP32 Registry.
* ci(pre-commit): Apply automatic fixes
* fix(chw_cdc): typo fix
Fixed Typo in the documentation.
* fix(hw_cdc): fixed a commentary typo
Fixed commantary typo
---------
Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>1 parent 7a4587b commit e70f4d3
File tree
7 files changed
+116
-0
lines changed- idf_component_examples/hw_cdc_hello_world
- main
7 files changed
+116
-0
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
96 | 96 |
| |
97 | 97 |
| |
98 | 98 |
| |
99 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + | ||
19 | + | ||
20 | + | ||
21 | + | ||
22 | + | ||
23 | + | ||
24 | + | ||
25 | + | ||
26 | + | ||
27 | + | ||
28 | + | ||
29 | + | ||
30 | + | ||
31 | + | ||
32 | + | ||
33 | + | ||
34 | + | ||
35 | + | ||
36 | + | ||
37 | + | ||
38 | + | ||
39 | + | ||
40 | + | ||
41 | + | ||
42 | + | ||
43 | + | ||
44 | + | ||
45 | + | ||
46 | + | ||
47 | + | ||
48 | + | ||
49 | + | ||
50 | + | ||
51 | + | ||
52 | + | ||
53 | + | ||
54 | + | ||
55 | + | ||
56 | + | ||
57 | + | ||
58 | + | ||
59 | + | ||
60 | + | ||
61 | + | ||
62 | + | ||
63 | + |
Lines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + |
Lines changed: 6 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + |
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + | ||
13 | + | ||
14 | + | ||
15 | + | ||
16 | + | ||
17 | + | ||
18 | + |
Lines changed: 12 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | + | ||
2 | + | ||
3 | + | ||
4 | + | ||
5 | + | ||
6 | + | ||
7 | + | ||
8 | + | ||
9 | + | ||
10 | + | ||
11 | + | ||
12 | + |
0 commit comments