-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move "core_pins.h" include from source to header file
Done to fix the following errors if attempting to compile usb_serial.h as C++ code: usb_serial.h:93:25: error: 'yield' was not declared in this scope usb_serial.h:177:45: error: 'millis' was not declared in this scope
- Loading branch information
Showing
2 changed files
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
|
||
#pragma once | ||
|
||
#include "core_pins.h" | ||
#include "usb_desc.h" | ||
#include <stdint.h> | ||
|
||
|