Преглед на файлове

Merge pull request #37 from xxxajk/master

Addition to gitignore and  Fix Yield when no Serial on USB
teensy4-core
Paul Stoffregen преди 10 години
родител
ревизия
7d51b56af0
променени са 2 файла, в които са добавени 10 реда и са изтрити 7 реда
  1. +7
    -0
      .gitignore
  2. +3
    -7
      teensy3/usb_serial.h

+ 7
- 0
.gitignore Целия файл

@@ -2,3 +2,10 @@
*.d
*.hex
*.o
nbproject
*~
*.bak
*.BAK
*.orig
*.tmp
*.TMP

+ 3
- 7
teensy3/usb_serial.h Целия файл

@@ -31,12 +31,10 @@
#ifndef USBserial_h_
#define USBserial_h_

#if defined(USB_SERIAL) || defined(USB_SERIAL_HID)
#if (F_CPU >= 20000000) && (defined(USB_SERIAL) || defined(USB_SERIAL_HID))

#include <inttypes.h>

#if F_CPU >= 20000000

// C language implementation
#ifdef __cplusplus
extern "C" {
@@ -106,7 +104,7 @@ extern void serialEvent(void);
#endif // __cplusplus


#else // F_CPU < 20 MHz
#else // F_CPU < 20 MHz && !(USB_SERIAL || USB_SERIAL_HID)

// Allow Arduino programs using Serial to compile, but Serial will do nothing.
#ifdef __cplusplus
@@ -142,8 +140,6 @@ extern usb_serial_class Serial;
extern void serialEvent(void);
#endif // __cplusplus

#endif // F_CPU

#endif // USB_SERIAL || USB_SERIAL_HID
#endif // F_CPU && USB_SERIAL || USB_SERIAL_HID

#endif // USBserial_h_

Loading…
Отказ
Запис