Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor building for different m5stickc boards #780

Merged
merged 3 commits into from
Jan 25, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update m5stickc-listener.ino
Final touch before PR.
  • Loading branch information
Jocke4f committed Jan 24, 2025
commit be89ed18f5f233678601e93fe6d4fe3f6196b735
6 changes: 3 additions & 3 deletions listener_clients/m5stickc-listener/m5stickc-listener.ino
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@
#if defined(STICK_C_PLUS2)
#include <M5StickCPlus2.h>
#if defined(STICK_C) || defined(STICK_C_PLUS)
#error "Multiple board defines"
#error "Multiple m5stick boards types defined"
#endif
#endif

#if defined(STICK_C_PLUS)
#include <M5StickCPlus.h>
#if defined(STICK_C) || defined(STICK_C_PLUS2)
#error "Multiple board defines"
#error "Multiple m5stick boards types defined"
#endif
#endif

#if defined(STICK_C)
#include <M5StickC.h>
#if defined(STICK_C_PLUS) || defined(STICK_C_PLUS2)
#error "Multiple defboard definesines"
#error "Multiple m5stick boards types defined"
#endif
#endif

Expand Down
Loading