Commit 8e967c1
2 files changed
+10
-30
lines changed- .github/workflows/build.yml+4
- .github/workflows/static_analysis.yml+6-1
- components/base_component/include/base_component.hpp+14
- components/base_peripheral/include/base_peripheral.hpp+197-157
- components/bldc_driver/CMakeLists.txt+1
- components/bldc_driver/include/bldc_driver.hpp+23-13
- components/bldc_driver/src/bldc_driver.cpp+3
- components/bldc_haptics/example/CMakeLists.txt+1-1
- components/bldc_haptics/example/main/bldc_haptics_example.cpp+11-32
- components/bldc_motor/example/CMakeLists.txt+1-1
- components/bldc_motor/example/main/bldc_motor_example.cpp+31-50
- components/bldc_motor/include/bldc_motor.hpp+95-22
- components/bldc_motor/include/bldc_types.hpp+62
- components/bldc_motor/include/sensor_direction.hpp+20
- components/ble_gatt_server/example/main/ble_gatt_server_example.cpp+2-1
- components/ble_gatt_server/include/ble_gatt_server.hpp+73-1
- components/ble_gatt_server/include/ble_gatt_server_menu.hpp+75-2
- components/ble_gatt_server/src/ble_gatt_server_callbacks.cpp+35-1
- components/cli/CMakeLists.txt+11-2
- components/cli/include/cli.hpp+243-35
- components/cli/include/line_input.hpp+89-10
- components/cli/src/cli.cpp+5
- components/esp-nimble-cpp+1-1
- components/event_manager/src/event_manager.cpp+2-1
- components/filters/include/simple_lowpass_filter.hpp+90
- components/gfps_service/CMakeLists.txt+2
- components/gfps_service/example/main/gfps_service_example.cpp+2-1
- components/gfps_service/include/gfps.hpp+1-1
- components/gfps_service/include/gfps_service.hpp+4-4
- components/gfps_service/src/gfps_service.cpp+6
- components/gfps_service/src/nearby_platform.cpp+16-12
- components/hid-rp/example/main/hid_rp_example.cpp+3-2
- components/hid-rp/include/hid-rp-gamepad.hpp+20-18
- components/hid_service/example/main/hid_service_example.cpp+5-3
- components/i2c/include/i2c.hpp+12-28
- components/interrupt/include/interrupt.hpp+4-22
- components/joystick/include/joystick.hpp+8-1
- components/led/include/led.hpp+2-2
- components/logger/include/logger.hpp+15-1
- components/math/example/CMakeLists.txt+1-1
- components/math/example/main/math_example.cpp+118-31
- components/math/include/bezier.hpp+14
- components/math/include/fast_math.hpp+68-2
- components/math/include/gaussian.hpp+3
- components/math/include/range_mapper.hpp+57-19
- components/math/include/vector2d.hpp+33-13
- components/monitor/CMakeLists.txt+1-1
- components/monitor/example/main/monitor_example.cpp-8
- components/monitor/include/task_monitor.hpp+58-25
- components/motorgo-mini/CMakeLists.txt+4
- components/motorgo-mini/example/CMakeLists.txt+21
- components/motorgo-mini/example/README.md+41
- components/motorgo-mini/example/main/CMakeLists.txt+2
- components/motorgo-mini/example/main/motorgo_mini_example.cpp+193
- components/motorgo-mini/example/sdkconfig.defaults+24
- components/motorgo-mini/include/motorgo-mini.hpp+521
- components/mt6701/CMakeLists.txt+1-1
- components/mt6701/example/CMakeLists.txt+1-1
- components/mt6701/example/main/Kconfig.projbuild+62-1
- components/mt6701/example/main/mt6701_example.cpp+157-15
- components/mt6701/include/mt6701.hpp+247-66
- components/nvs/CMakeLists.txt+4
- components/nvs/example/CMakeLists.txt+23
- components/nvs/example/README.md+23
- components/nvs/example/main/CMakeLists.txt+2
- components/nvs/example/main/nvs_example.cpp+43
- components/nvs/example/partitions.csv+4
- components/nvs/example/sdkconfig.defaults+9
- components/nvs/include/nvs.hpp+208
- components/pid/include/pid.hpp+17-10
- components/task/example/main/task_example.cpp+37
- components/task/include/task.hpp+91-1
- components/timer/example/main/timer_example.cpp+4-2
- components/timer/include/high_resolution_timer.hpp+21-14
- doc/Doxyfile+5
- doc/en/filters/index.rst+1
- doc/en/filters/simple_lowpass.rst+12
- doc/en/index.rst+2
- doc/en/math/fast_math.rst+5
- doc/en/motorgo_mini.rst+21
- doc/en/nvs.rst+16
- external/alpaca+1-1
- lib/CMakeLists.txt+3
- lib/bind.cpp+12-6
- python/task.py+3-2
- python/udp_client.py+3-2
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
34 | | - | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | 33 | | |
53 | 34 | | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | | - | |
62 | | - | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
63 | 43 | | |
64 | 44 | | |
65 | 45 | | |
| |||
78 | 58 | | |
79 | 59 | | |
80 | 60 | | |
81 | | - | |
| 61 | + | |
82 | 62 | | |
83 | 63 | | |
84 | 64 | | |
| |||
0 commit comments