Skip to content

Commit 0503a4c

Browse files
committed
fix build
1 parent 2e0dbf4 commit 0503a4c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
target: esp32s3
1919
command: |
2020
idf.py -DSDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.motorgo" build
21+
2122
steps:
2223
- name: Checkout repo
2324
uses: actions/checkout@v4

main/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ extern "C" void app_main(void) {
2626
#elif CONFIG_EXAMPLE_HARDWARE_TEST_STAND
2727
#pragma message("Using TinyS3 Test Stand hardware configuration")
2828
logger.info("Using TinyS3 Test Stand hardware configuration");
29-
espp::TinyS3TestStand test_stand(espp::Logger::Verbosity::INFO);
29+
auto &test_stand = espp::TinyS3TestStand::get();
3030
auto motor = test_stand.motor();
3131
using BldcHaptics = espp::BldcHaptics<espp::TinyS3TestStand::BldcMotor>;
3232
#else

0 commit comments

Comments
 (0)