Skip to content

Commit a22ea57

Browse files
committed
ATLEDGE-444 Fix Library warnings for Arduino IDE 1.6.6
Some libraries were missing the "category" field in library.properties Minor fixes in some libraries for 1.6.6 compatibility
1 parent 5c29db6 commit a22ea57

File tree

18 files changed

+20
-6
lines changed

18 files changed

+20
-6
lines changed

libraries/CurieBle/library.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ author=Emutex
44
maintainer=Emutex <dan@emutex.com>
55
sentence=Bluetooth Low Energy API for Intel Curie BLE device.
66
paragraph=
7+
category=Communication
78
url=
89
architectures=arc32

libraries/CurieImu/library.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ author=Emutex
44
maintainer=Emutex <dan@emutex.com>
55
sentence=BMI160 6DOF IMU Sensor Library for Intel Curie
66
paragraph=Provides access to 3-axis Accelerometer and Gyroscope data from the BMI160 IMU incorporated on Intel Curie modules
7+
category=Sensors
78
url=
89
architectures=arc32
910

libraries/CurieRTC/examples/ReadTest/ReadTest.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <Time.h>
1+
#include <TimeLib.h>
22
#include <CurieRTC.h>
33

44
void setup() {

libraries/CurieRTC/examples/SetTime/SetTime.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <Time.h>
1+
#include <TimeLib.h>
22
#include <CurieRTC.h>
33

44
const char *monthName[12] = {

libraries/CurieRTC/library.properties

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name=CurieRTC
2+
version=1.0
3+
author=Intel
4+
maintainer=Intel <dino.tinitigan@intel.com>
5+
sentence=Curie RTC library.
6+
paragraph=
7+
category=Timing
8+
url=
9+
architectures=arc32
File renamed without changes.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
name=SoftwareSerial
1+
name=CurieSoftwareSerial
22
version=0.1
33
author=Intel
44
maintainer=Intel <dino.tinitigan@intel.com>
55
sentence=SoftwareSerial Library port for Arduino101
66
paragraph=
7+
category=Communication
78
url=http://www.arduino.cc/en/Reference/SoftwareSerial
89
architectures=arc32
910

libraries/OneWire/library.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ author=Jim Studt, Tom Pollard, Robin James, Glenn Trewitt, Jason Dangel, Guiller
44
maintainer=Paul Stoffregen
55
sentence=Access 1-wire temperature sensors, memory and other chips.
66
paragraph=
7+
category=Communication
78
url=http://www.pjrc.com/teensy/td_libs_OneWire.html
89
architectures=arc32
910

libraries/SPI/library.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ author=Intel/Emutex
44
maintainer=Intel/Emutex <dan@emutex.com>
55
sentence=Enables the communication with devices that use the Serial Peripheral Interface (SPI) Bus. For all Arduino 101 boards.
66
paragraph=
7+
category=Communication
78
url=http://www.arduino.cc/en/Reference/SPI
89
architectures=arc32

libraries/Time/examples/TimeCurieRTC/TimeCurieRTC.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
*/
66

7-
#include <Time.h>
7+
#include <TimeLib.h>
88
#include <Wire.h>
99
#include <CurieRTC.h> // a basic Curie library that returns time as a time_t
1010

libraries/Time/examples/TimeCurieRTCLog/TimeCurieRTCLog.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* the time of the event and time since the previous event is calculated and sent to the serial port.
77
*/
88

9-
#include <Time.h>
9+
#include <TimeLib.h>
1010
#include <CurieRTC.h> // a basic CurieRTC library that returns time as a time_t
1111

1212
const int nbrInputPins = 6; // monitor 6 digital pins

libraries/Time/examples/TimeCurieRTCSet/TimeCurieRTCSet.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* On Linux, you can use "date +T%s > /dev/ttyACM0" (UTC time zone)
88
*/
99

10-
#include <Time.h>
10+
#include <TimeLib.h>
1111
#include <CurieRTC.h> // a basic CurieRTC library that returns time as a time_t
1212

1313

0 commit comments

Comments
 (0)