From 22d82ecd0a328b6a45c59133dd48aaf3c57e22b6 Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Tue, 3 Mar 2015 19:08:39 +0100 Subject: [PATCH] SPI library was added twice after merge - see: c39e8a180cf0d7a1b1d75055730e0b555fa2dedb --- examples/Bluetooth/BTHID/BTHID.ino | 4 ++-- examples/Bluetooth/PS3BT/PS3BT.ino | 4 ++-- examples/Bluetooth/PS3Multi/PS3Multi.ino | 4 ++-- examples/Bluetooth/PS3SPP/PS3SPP.ino | 4 ++-- examples/Bluetooth/PS4BT/PS4BT.ino | 4 ++-- examples/Bluetooth/SPP/SPP.ino | 4 ++-- examples/Bluetooth/Wii/Wii.ino | 4 ++-- examples/Bluetooth/WiiIRCamera/WiiIRCamera.ino | 4 ++-- examples/Bluetooth/WiiMulti/WiiMulti.ino | 4 ++-- examples/Bluetooth/WiiUProController/WiiUProController.ino | 4 ++-- examples/HID/USBHIDBootKbd/USBHIDBootKbd.ino | 4 ++-- .../HID/USBHIDBootKbdAndMouse/USBHIDBootKbdAndMouse.ino | 6 +----- examples/HID/USBHIDBootMouse/USBHIDBootMouse.ino | 4 ++-- examples/HID/USBHIDJoystick/USBHIDJoystick.ino | 6 +----- examples/HID/USBHID_desc/USBHID_desc.ino | 4 ++-- examples/HID/le3dp/le3dp.ino | 4 ++-- examples/HID/scale/scale.ino | 4 ++-- examples/PS3USB/PS3USB.ino | 4 ++-- examples/PS4USB/PS4USB.ino | 4 ++-- examples/PSBuzz/PSBuzz.ino | 4 ++-- examples/USB_desc/USB_desc.ino | 4 ++-- examples/Xbox/XBOXOLD/XBOXOLD.ino | 4 ++-- examples/Xbox/XBOXRECV/XBOXRECV.ino | 4 ++-- examples/Xbox/XBOXUSB/XBOXUSB.ino | 4 ++-- examples/acm/acm_terminal/acm_terminal.ino | 4 ++-- examples/adk/adk_barcode/adk_barcode.ino | 6 +----- examples/adk/demokit_20/demokit_20.ino | 6 +----- examples/adk/term_test/term_test.ino | 6 +----- examples/adk/term_time/term_time.ino | 6 +----- examples/board_qc/board_qc.ino | 4 ++-- examples/ftdi/USBFTDILoopback/USBFTDILoopback.ino | 4 ++-- examples/hub_demo/hub_demo.ino | 4 ++-- examples/max_LCD/max_LCD.ino | 6 +----- .../pl2303/pl2303_gprs_terminal/pl2303_gprs_terminal.ino | 4 ++-- examples/pl2303/pl2303_gps/pl2303_gps.ino | 4 ++-- examples/pl2303/pl2303_tinygps/pl2303_tinygps.ino | 4 ++-- .../pl2303/pl2303_xbee_terminal/pl2303_xbee_terminal.ino | 4 ++-- examples/testusbhostFAT/testusbhostFAT.ino | 0 38 files changed, 67 insertions(+), 95 deletions(-) mode change 100644 => 100755 examples/testusbhostFAT/testusbhostFAT.ino diff --git a/examples/Bluetooth/BTHID/BTHID.ino b/examples/Bluetooth/BTHID/BTHID.ino index a5b0c0ed..919a5646 100644 --- a/examples/Bluetooth/BTHID/BTHID.ino +++ b/examples/Bluetooth/BTHID/BTHID.ino @@ -9,8 +9,8 @@ #include "KeyboardParser.h" #include "MouseParser.h" -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Bluetooth/PS3BT/PS3BT.ino b/examples/Bluetooth/PS3BT/PS3BT.ino index e9c98341..b8967344 100644 --- a/examples/Bluetooth/PS3BT/PS3BT.ino +++ b/examples/Bluetooth/PS3BT/PS3BT.ino @@ -7,8 +7,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Bluetooth/PS3Multi/PS3Multi.ino b/examples/Bluetooth/PS3Multi/PS3Multi.ino index fda21616..5ebfd781 100644 --- a/examples/Bluetooth/PS3Multi/PS3Multi.ino +++ b/examples/Bluetooth/PS3Multi/PS3Multi.ino @@ -8,8 +8,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Bluetooth/PS3SPP/PS3SPP.ino b/examples/Bluetooth/PS3SPP/PS3SPP.ino index 46f6cf10..8f234cbd 100644 --- a/examples/Bluetooth/PS3SPP/PS3SPP.ino +++ b/examples/Bluetooth/PS3SPP/PS3SPP.ino @@ -13,8 +13,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Bluetooth/PS4BT/PS4BT.ino b/examples/Bluetooth/PS4BT/PS4BT.ino index bee617e3..c3ba696b 100644 --- a/examples/Bluetooth/PS4BT/PS4BT.ino +++ b/examples/Bluetooth/PS4BT/PS4BT.ino @@ -7,8 +7,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Bluetooth/SPP/SPP.ino b/examples/Bluetooth/SPP/SPP.ino index f67367ea..8fb9c4ec 100644 --- a/examples/Bluetooth/SPP/SPP.ino +++ b/examples/Bluetooth/SPP/SPP.ino @@ -7,8 +7,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Bluetooth/Wii/Wii.ino b/examples/Bluetooth/Wii/Wii.ino index 85f2151f..b1935681 100644 --- a/examples/Bluetooth/Wii/Wii.ino +++ b/examples/Bluetooth/Wii/Wii.ino @@ -7,8 +7,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Bluetooth/WiiIRCamera/WiiIRCamera.ino b/examples/Bluetooth/WiiIRCamera/WiiIRCamera.ino index c2f10c08..573b8bd4 100644 --- a/examples/Bluetooth/WiiIRCamera/WiiIRCamera.ino +++ b/examples/Bluetooth/WiiIRCamera/WiiIRCamera.ino @@ -14,8 +14,8 @@ Otherwise, wire up a IR LED yourself. #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Bluetooth/WiiMulti/WiiMulti.ino b/examples/Bluetooth/WiiMulti/WiiMulti.ino index 89baf920..07c6f13d 100644 --- a/examples/Bluetooth/WiiMulti/WiiMulti.ino +++ b/examples/Bluetooth/WiiMulti/WiiMulti.ino @@ -8,8 +8,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Bluetooth/WiiUProController/WiiUProController.ino b/examples/Bluetooth/WiiUProController/WiiUProController.ino index f1e105b9..ab35a274 100644 --- a/examples/Bluetooth/WiiUProController/WiiUProController.ino +++ b/examples/Bluetooth/WiiUProController/WiiUProController.ino @@ -7,8 +7,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/HID/USBHIDBootKbd/USBHIDBootKbd.ino b/examples/HID/USBHIDBootKbd/USBHIDBootKbd.ino index 0f6b1f64..48b33abf 100644 --- a/examples/HID/USBHIDBootKbd/USBHIDBootKbd.ino +++ b/examples/HID/USBHIDBootKbd/USBHIDBootKbd.ino @@ -1,8 +1,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/HID/USBHIDBootKbdAndMouse/USBHIDBootKbdAndMouse.ino b/examples/HID/USBHIDBootKbdAndMouse/USBHIDBootKbdAndMouse.ino index dbb2bb4b..5fc8c96f 100644 --- a/examples/HID/USBHIDBootKbdAndMouse/USBHIDBootKbdAndMouse.ino +++ b/examples/HID/USBHIDBootKbdAndMouse/USBHIDBootKbdAndMouse.ino @@ -1,16 +1,12 @@ #include #include + // Satisfy IDE, which only needs to see the include statment in the ino. #ifdef dobogusinclude #include #include #endif -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include -#include -#endif - class MouseRptParser : public MouseReportParser { protected: diff --git a/examples/HID/USBHIDBootMouse/USBHIDBootMouse.ino b/examples/HID/USBHIDBootMouse/USBHIDBootMouse.ino index aa1add0c..53102512 100644 --- a/examples/HID/USBHIDBootMouse/USBHIDBootMouse.ino +++ b/examples/HID/USBHIDBootMouse/USBHIDBootMouse.ino @@ -1,8 +1,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/HID/USBHIDJoystick/USBHIDJoystick.ino b/examples/HID/USBHIDJoystick/USBHIDJoystick.ino index 335ecea3..956441d6 100644 --- a/examples/HID/USBHIDJoystick/USBHIDJoystick.ino +++ b/examples/HID/USBHIDJoystick/USBHIDJoystick.ino @@ -1,6 +1,7 @@ #include #include #include + // Satisfy IDE, which only needs to see the include statment in the ino. #ifdef dobogusinclude #include @@ -9,11 +10,6 @@ #include "hidjoystickrptparser.h" -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include -#include -#endif - USB Usb; USBHub Hub(&Usb); HIDUniversal Hid(&Usb); diff --git a/examples/HID/USBHID_desc/USBHID_desc.ino b/examples/HID/USBHID_desc/USBHID_desc.ino index 588f1eff..85cfc19a 100644 --- a/examples/HID/USBHID_desc/USBHID_desc.ino +++ b/examples/HID/USBHID_desc/USBHID_desc.ino @@ -4,8 +4,8 @@ #include #include "pgmstrings.h" -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/HID/le3dp/le3dp.ino b/examples/HID/le3dp/le3dp.ino index eefd9d79..837d7f5a 100644 --- a/examples/HID/le3dp/le3dp.ino +++ b/examples/HID/le3dp/le3dp.ino @@ -6,8 +6,8 @@ #include "le3dp_rptparser.h" -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/HID/scale/scale.ino b/examples/HID/scale/scale.ino index 283266b7..f26ff964 100644 --- a/examples/HID/scale/scale.ino +++ b/examples/HID/scale/scale.ino @@ -7,8 +7,8 @@ #include "scale_rptparser.h" -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/PS3USB/PS3USB.ino b/examples/PS3USB/PS3USB.ino index 0a7c4f44..a53dcfbe 100644 --- a/examples/PS3USB/PS3USB.ino +++ b/examples/PS3USB/PS3USB.ino @@ -6,8 +6,8 @@ #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/PS4USB/PS4USB.ino b/examples/PS4USB/PS4USB.ino index 87c611ca..d0d76790 100644 --- a/examples/PS4USB/PS4USB.ino +++ b/examples/PS4USB/PS4USB.ino @@ -6,8 +6,8 @@ #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/PSBuzz/PSBuzz.ino b/examples/PSBuzz/PSBuzz.ino index 06e0afaa..6ee462c1 100644 --- a/examples/PSBuzz/PSBuzz.ino +++ b/examples/PSBuzz/PSBuzz.ino @@ -6,8 +6,8 @@ #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/USB_desc/USB_desc.ino b/examples/USB_desc/USB_desc.ino index 275224e2..0ae15663 100644 --- a/examples/USB_desc/USB_desc.ino +++ b/examples/USB_desc/USB_desc.ino @@ -2,8 +2,8 @@ #include "pgmstrings.h" -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Xbox/XBOXOLD/XBOXOLD.ino b/examples/Xbox/XBOXOLD/XBOXOLD.ino index b00e1ea4..64a3ed61 100644 --- a/examples/Xbox/XBOXOLD/XBOXOLD.ino +++ b/examples/Xbox/XBOXOLD/XBOXOLD.ino @@ -7,8 +7,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Xbox/XBOXRECV/XBOXRECV.ino b/examples/Xbox/XBOXRECV/XBOXRECV.ino index f4c0af42..491b287e 100644 --- a/examples/Xbox/XBOXRECV/XBOXRECV.ino +++ b/examples/Xbox/XBOXRECV/XBOXRECV.ino @@ -7,8 +7,8 @@ #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/Xbox/XBOXUSB/XBOXUSB.ino b/examples/Xbox/XBOXUSB/XBOXUSB.ino index 500ba53d..8a5691c6 100644 --- a/examples/Xbox/XBOXUSB/XBOXUSB.ino +++ b/examples/Xbox/XBOXUSB/XBOXUSB.ino @@ -6,8 +6,8 @@ #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/acm/acm_terminal/acm_terminal.ino b/examples/acm/acm_terminal/acm_terminal.ino index 9d1b7928..f509cda8 100644 --- a/examples/acm/acm_terminal/acm_terminal.ino +++ b/examples/acm/acm_terminal/acm_terminal.ino @@ -3,8 +3,8 @@ #include "pgmstrings.h" -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/adk/adk_barcode/adk_barcode.ino b/examples/adk/adk_barcode/adk_barcode.ino index f6c6609b..a308ff0f 100644 --- a/examples/adk/adk_barcode/adk_barcode.ino +++ b/examples/adk/adk_barcode/adk_barcode.ino @@ -4,17 +4,13 @@ #include #include #include + // Satisfy IDE, which only needs to see the include statment in the ino. #ifdef dobogusinclude #include #include #endif -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include -#include -#endif - USB Usb; USBHub Hub1(&Usb); USBHub Hub2(&Usb); diff --git a/examples/adk/demokit_20/demokit_20.ino b/examples/adk/demokit_20/demokit_20.ino index 7d7ce4c8..f65adf57 100644 --- a/examples/adk/demokit_20/demokit_20.ino +++ b/examples/adk/demokit_20/demokit_20.ino @@ -1,16 +1,12 @@ #include #include + // Satisfy IDE, which only needs to see the include statment in the ino. #ifdef dobogusinclude #include #include #endif -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include -#include -#endif - USB Usb; USBHub hub0(&Usb); USBHub hub1(&Usb); diff --git a/examples/adk/term_test/term_test.ino b/examples/adk/term_test/term_test.ino index 8feee494..db681c3b 100644 --- a/examples/adk/term_test/term_test.ino +++ b/examples/adk/term_test/term_test.ino @@ -1,16 +1,12 @@ #include #include + // Satisfy IDE, which only needs to see the include statment in the ino. #ifdef dobogusinclude #include #include #endif -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include -#include -#endif - USB Usb; //USBHub Hub(&Usb); diff --git a/examples/adk/term_time/term_time.ino b/examples/adk/term_time/term_time.ino index 33a2e5aa..a3f1dbc8 100644 --- a/examples/adk/term_time/term_time.ino +++ b/examples/adk/term_time/term_time.ino @@ -1,16 +1,12 @@ #include #include + // Satisfy IDE, which only needs to see the include statment in the ino. #ifdef dobogusinclude #include #include #endif -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include -#include -#endif - USB Usb; ADK adk(&Usb,"Circuits@Home, ltd.", diff --git a/examples/board_qc/board_qc.ino b/examples/board_qc/board_qc.ino index e18f163e..2d8529e4 100644 --- a/examples/board_qc/board_qc.ino +++ b/examples/board_qc/board_qc.ino @@ -5,8 +5,8 @@ /**/ #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include <../../../../hardware/pic32/libraries/SPI/SPI.h> // Hack to use the SPI library #include // Hack to use the SPI library diff --git a/examples/ftdi/USBFTDILoopback/USBFTDILoopback.ino b/examples/ftdi/USBFTDILoopback/USBFTDILoopback.ino index dbf95f3c..5be7adc2 100644 --- a/examples/ftdi/USBFTDILoopback/USBFTDILoopback.ino +++ b/examples/ftdi/USBFTDILoopback/USBFTDILoopback.ino @@ -3,8 +3,8 @@ #include "pgmstrings.h" -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/hub_demo/hub_demo.ino b/examples/hub_demo/hub_demo.ino index 5738babc..20685067 100644 --- a/examples/hub_demo/hub_demo.ino +++ b/examples/hub_demo/hub_demo.ino @@ -1,8 +1,8 @@ #include #include "pgmstrings.h" -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/max_LCD/max_LCD.ino b/examples/max_LCD/max_LCD.ino index 9f2000bc..6603ab90 100644 --- a/examples/max_LCD/max_LCD.ino +++ b/examples/max_LCD/max_LCD.ino @@ -4,17 +4,13 @@ // pinout: D[4-7] -> GPOUT[4-7], RS-> GPOUT[2], E ->GPOUT[3] #include + // Satisfy IDE, which only needs to see the include statment in the ino. #ifdef dobogusinclude #include #include #endif -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include -#include -#endif - USB Usb; Max_LCD lcd(&Usb); diff --git a/examples/pl2303/pl2303_gprs_terminal/pl2303_gprs_terminal.ino b/examples/pl2303/pl2303_gprs_terminal/pl2303_gprs_terminal.ino index 81ad0c54..7c4c9f6c 100644 --- a/examples/pl2303/pl2303_gprs_terminal/pl2303_gprs_terminal.ino +++ b/examples/pl2303/pl2303_gprs_terminal/pl2303_gprs_terminal.ino @@ -5,8 +5,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/pl2303/pl2303_gps/pl2303_gps.ino b/examples/pl2303/pl2303_gps/pl2303_gps.ino index 25b4ae54..e8c8a022 100644 --- a/examples/pl2303/pl2303_gps/pl2303_gps.ino +++ b/examples/pl2303/pl2303_gps/pl2303_gps.ino @@ -6,8 +6,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/pl2303/pl2303_tinygps/pl2303_tinygps.ino b/examples/pl2303/pl2303_tinygps/pl2303_tinygps.ino index 3266b69f..d527eabe 100644 --- a/examples/pl2303/pl2303_tinygps/pl2303_tinygps.ino +++ b/examples/pl2303/pl2303_tinygps/pl2303_tinygps.ino @@ -12,8 +12,8 @@ #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/pl2303/pl2303_xbee_terminal/pl2303_xbee_terminal.ino b/examples/pl2303/pl2303_xbee_terminal/pl2303_xbee_terminal.ino index d9d9b98c..67b7dab6 100644 --- a/examples/pl2303/pl2303_xbee_terminal/pl2303_xbee_terminal.ino +++ b/examples/pl2303/pl2303_xbee_terminal/pl2303_xbee_terminal.ino @@ -6,8 +6,8 @@ #include #include -#ifdef dobogusinclude // Satisfy the IDE, which needs to see the include statment in the ino too. -#include +// Satisfy the IDE, which needs to see the include statment in the ino too. +#ifdef dobogusinclude #include #include #endif diff --git a/examples/testusbhostFAT/testusbhostFAT.ino b/examples/testusbhostFAT/testusbhostFAT.ino old mode 100644 new mode 100755