Fixes coding style.

Adds examples to travis.
This commit is contained in:
riban 2018-10-15 08:18:16 +01:00
parent 401f4991e9
commit 1d7dbd640b
6 changed files with 37 additions and 35 deletions

View file

@ -39,6 +39,9 @@ env:
- PLATFORMIO_CI_SRC=examples/board_qc - PLATFORMIO_CI_SRC=examples/board_qc
- PLATFORMIO_CI_SRC=examples/cdc_XR21B1411/XR_terminal - PLATFORMIO_CI_SRC=examples/cdc_XR21B1411/XR_terminal
- PLATFORMIO_CI_SRC=examples/ftdi/USBFTDILoopback - PLATFORMIO_CI_SRC=examples/ftdi/USBFTDILoopback
- PLATFORMIO_CI_SRC=examples/GPIO/Blink
- PLATFORMIO_CI_SRC=examples/GPIO/Blink_LowLevel
- PLATFORMIO_CI_SRC=examples/GPIO/Input
- PLATFORMIO_CI_SRC=examples/HID/le3dp - PLATFORMIO_CI_SRC=examples/HID/le3dp
- PLATFORMIO_CI_SRC=examples/HID/scale - PLATFORMIO_CI_SRC=examples/HID/scale
- PLATFORMIO_CI_SRC=examples/HID/SRWS1 - PLATFORMIO_CI_SRC=examples/HID/SRWS1

View file

@ -29,8 +29,7 @@ UHS2_GPIO implements "wiring" style GPIO access. Implemented by Brian Walton bri
#include "Usb.h" #include "Usb.h"
class UHS2_GPIO class UHS2_GPIO {
{
public: public:
UHS2_GPIO(USB *pUsb); UHS2_GPIO(USB *pUsb);

View file

@ -31,7 +31,7 @@ void loop()
// Get the current output value, toggle then wait half a second // Get the current output value, toggle then wait half a second
uint8_t nGPO = Usb.gpioRdOutput(); uint8_t nGPO = Usb.gpioRdOutput();
uint8_t nValue = ((nGPO & 0x01) == 0x01) ? 0 : 1; uint8_t nValue = ((nGPO & 0x01) == 0x01) ? 0 : 1;
nGPO &= 0xFE; //clear bit 0 nGPO &= 0xFE; // Clear bit 0
nGPO |= nValue; nGPO |= nValue;
Usb.gpioWr(nGPO); Usb.gpioWr(nGPO);
Serial.print(nValue ? "+" : "."); // Debug to show what the output should be doing Serial.print(nValue ? "+" : "."); // Debug to show what the output should be doing

View file

@ -32,7 +32,7 @@ void loop()
{ {
// Get the value of input, set value of output // Get the value of input, set value of output
int nValue = GPIO.digitalRead(INPUT_PIN); int nValue = GPIO.digitalRead(INPUT_PIN);
nValue = (nValue?0:1); nValue = (nValue ? LOW : HIGH);
GPIO.digitalWrite(OUTPUT_PIN, nValue); GPIO.digitalWrite(OUTPUT_PIN, nValue);
} }