Skip to content

Commit

Permalink
Pinout fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorcelli committed Dec 28, 2024
1 parent 9a8389a commit 3405e36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 4 additions & 0 deletions boards/pinouts/m5stack-cardputer.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
#define USB_VID 0x303a
#define USB_PID 0x1001

#define HAS_KEYBOARD //has keyboard to use
#define HAS_KEYBOARD_HID //has keyboard to use
#define KB_HID_EXIT_MSG "fn + esc to exit"

static const uint8_t TX = 43;
static const uint8_t RX = 44;

Expand Down
4 changes: 0 additions & 4 deletions boards/pinouts/m5stack-core.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@

#include <stdint.h>

#define HAS_KEYBOARD //has keyboard to use
#define HAS_KEYBOARD_HID //has keyboard to use
#define KB_HID_EXIT_MSG "fn + esc to exit"

static const uint8_t TX = 1;
static const uint8_t RX = 3;

Expand Down

2 comments on commit 3405e36

@rouing
Copy link
Contributor

@rouing rouing commented on 3405e36 Dec 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops my bad @bmorcelli
Thanks!

@bmorcelli
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it was me, sorry... I asked you to change the wrong file in the review

Please sign in to comment.