mirror of
https://github.com/eclipse/upm.git
synced 2025-07-07 04:11:10 +03:00
Compare commits
17 Commits
Author | SHA1 | Date | |
---|---|---|---|
d866b25f85 | |||
2583d0852d | |||
2de319c254 | |||
77fbf49f93 | |||
372d3e980f | |||
dd014c718f | |||
5304192813 | |||
8d524b8744 | |||
deff852839 | |||
2d2ee8d1f0 | |||
9a83bb7530 | |||
2b642ab7a4 | |||
bde7259ee8 | |||
dc93fb11ff | |||
19d1af6a48 | |||
e689dc175c | |||
06ecae7212 |
@ -25,7 +25,7 @@ include (GetGitRevisionDescription)
|
|||||||
git_describe (VERSION "--tags")
|
git_describe (VERSION "--tags")
|
||||||
if ("x_${VERSION}" STREQUAL "x_GIT-NOTFOUND" OR "x_${VERSION}" STREQUAL "x_-128-NOTFOUND")
|
if ("x_${VERSION}" STREQUAL "x_GIT-NOTFOUND" OR "x_${VERSION}" STREQUAL "x_-128-NOTFOUND")
|
||||||
message (WARNING " - Install git to compile a production UPM!")
|
message (WARNING " - Install git to compile a production UPM!")
|
||||||
set (VERSION "v0.7.3-dirty")
|
set (VERSION "v0.8.0-dirty")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
message (INFO " - UPM Version ${VERSION}")
|
message (INFO " - UPM Version ${VERSION}")
|
||||||
|
@ -86,6 +86,8 @@ please refer to the Intel Developer Zone IDE page.
|
|||||||
|
|
||||||
See building documentation [here](docs/building.md).
|
See building documentation [here](docs/building.md).
|
||||||
|
|
||||||
|
[](https://travis-ci.org/intel-iot-devkit/upm)
|
||||||
|
|
||||||
### Making your own UPM module
|
### Making your own UPM module
|
||||||
|
|
||||||
Porting [link](docs/porting.md) has more information on making new UPM modules.
|
Porting [link](docs/porting.md) has more information on making new UPM modules.
|
||||||
|
@ -5,10 +5,21 @@ UPM uses cmake in order to make compilation relatively painless. Cmake runs
|
|||||||
build out of tree so the recommended way is to clone from git and make a build/
|
build out of tree so the recommended way is to clone from git and make a build/
|
||||||
directory.
|
directory.
|
||||||
|
|
||||||
|
**Dependencies**
|
||||||
|
* basic: libmraa, cmake, swig, pkgconfig, pthreads, librt
|
||||||
|
* bindings: python-dev, nodejs-dev, openjdk
|
||||||
|
* documentation: doxygen, graphviz, sphinx, yuidoc
|
||||||
|
* sensor specific: bacnet-mstp, modbus, openzwave, jpeg
|
||||||
|
|
||||||
This project depends on libmraa, so that needs to be installed first. Append
|
This project depends on libmraa, so that needs to be installed first. Append
|
||||||
the install location of mraa pkgconfig to the following environment variable:
|
the install location of mraa pkgconfig to the following environment variable:
|
||||||
|
|
||||||
|
~~~~~~~~~~~~~
|
||||||
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:.../mraa/build/lib/pkgconfig
|
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:.../mraa/build/lib/pkgconfig
|
||||||
|
~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
If you are building the Java or Node.js bindings make sure you set the
|
||||||
|
`JAVA_HOME` and `NODE_PATH` environment variables respectively.
|
||||||
|
|
||||||
UPM will attempt to build all directories inside src/ and they must contain
|
UPM will attempt to build all directories inside src/ and they must contain
|
||||||
individual CMakeLists.txt files.
|
individual CMakeLists.txt files.
|
||||||
@ -45,10 +56,18 @@ Cross-compiling on a different system:
|
|||||||
-DCMAKE_CXX_FLAGS:STRING=-m32 -march=i586
|
-DCMAKE_CXX_FLAGS:STRING=-m32 -march=i586
|
||||||
-DCMAKE_C_FLAGS:STRING=-m32 -march=i586
|
-DCMAKE_C_FLAGS:STRING=-m32 -march=i586
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
|
Enabling Java module building
|
||||||
|
~~~~~~~~~~~~~
|
||||||
|
-DBUILDSWIGJAVA=ON
|
||||||
|
~~~~~~~~~~~~~
|
||||||
Building with an older version of swig (swig 2.0+) requires the disabling of javascript:
|
Building with an older version of swig (swig 2.0+) requires the disabling of javascript:
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
-DBUILDSWIGNODE=OFF
|
-DBUILDSWIGNODE=OFF
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
|
Generating python3 modules instead of python2.7
|
||||||
|
~~~~~~~~~~~~~
|
||||||
|
-DBUILDPYTHON3=ON
|
||||||
|
~~~~~~~~~~~~~
|
||||||
Disabling python module building
|
Disabling python module building
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
-DBUILDSWIGPYTHON=OFF
|
-DBUILDSWIGPYTHON=OFF
|
||||||
@ -57,7 +76,7 @@ Setting the python library to use:
|
|||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
-DPYTHON_LIBRARY:FILEPATH=/usr/lib/libpython2.7.so.1.0
|
-DPYTHON_LIBRARY:FILEPATH=/usr/lib/libpython2.7.so.1.0
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
Building doxygen doc
|
Building documentation
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
-DBUILDDOC=ON
|
-DBUILDDOC=ON
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
@ -65,12 +84,16 @@ Build C++ example binaries
|
|||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
-DBUILDEXAMPLES=ON
|
-DBUILDEXAMPLES=ON
|
||||||
~~~~~~~~~~~~~
|
~~~~~~~~~~~~~
|
||||||
|
Build Java examples
|
||||||
|
~~~~~~~~~~~~~
|
||||||
|
-DBUILDJAVAEXAMPLES=ON
|
||||||
|
~~~~~~~~~~~~~
|
||||||
|
|
||||||
If you intend to turn on all the options and build everything at once (C++,
|
If you intend to turn on all the options and build everything at once
|
||||||
Node, Python and Documentation) you will have to edit the src/doxy2swig.py file
|
(C++, Java, Node, Python and Documentation) you will have to edit the
|
||||||
and change the line endings from Windows style to Linux format. This has to be
|
src/doxy2swig.py file and change the line endings from Windows style to Linux
|
||||||
repeated every time to sync with the master branch since our Github repository
|
format. This has to be repeated every time to sync with the master branch since
|
||||||
stores files using CR LF line breaks.
|
our Github repository stores files using CR LF line breaks.
|
||||||
|
|
||||||
You can also generate the include and lib directories containing all the sensor
|
You can also generate the include and lib directories containing all the sensor
|
||||||
headers and library files respectively with *make install*. Further, you may
|
headers and library files respectively with *make install*. Further, you may
|
||||||
|
@ -4,6 +4,16 @@ Changelog {#changelog}
|
|||||||
Here's a list summarizing some of the key undergoing changes to our library
|
Here's a list summarizing some of the key undergoing changes to our library
|
||||||
from earlier versions:
|
from earlier versions:
|
||||||
|
|
||||||
|
### v0.8.0
|
||||||
|
|
||||||
|
* Extended l3gd20 driver to support I2C connections in addition to IIO
|
||||||
|
* Updated ads1x15, mcp9808 and ssd1306 I2C drivers to not throw a fatal
|
||||||
|
exception if they fail to set a different I2C speed
|
||||||
|
* Added extra functionality to apa102 driver, backlight control to jhd1313m1
|
||||||
|
LCDs and fixed htu21d
|
||||||
|
* Improved documentation with build dependencies, refreshed the list of known
|
||||||
|
limitations and simplified the component name for a few sensors
|
||||||
|
|
||||||
### v0.7.3
|
### v0.7.3
|
||||||
|
|
||||||
* Fixed several existing drivers and updated Grove Temperature sensor to use
|
* Fixed several existing drivers and updated Grove Temperature sensor to use
|
||||||
|
@ -12,6 +12,10 @@ such sensors and known workarounds if they exist.
|
|||||||
some high powered USB ports might be enough, in most cases you will encounter
|
some high powered USB ports might be enough, in most cases you will encounter
|
||||||
dropped characters, washed out text and/or failed I2C writes while using USB
|
dropped characters, washed out text and/or failed I2C writes while using USB
|
||||||
power alone.
|
power alone.
|
||||||
|
* **Grove Servo** (ES08A) requires an external power supply connected to the
|
||||||
|
board to work. We highly recommend using a separate circuit when powering any
|
||||||
|
sort of motor. Trying to use this servo off USB power alone can lead to damage
|
||||||
|
to the servo and/or board!
|
||||||
* **Grove I2C Touch Sensor** (MPR121) v1.3 is incompatible with the Intel
|
* **Grove I2C Touch Sensor** (MPR121) v1.3 is incompatible with the Intel
|
||||||
Edison using the Arduino board, but will work with the Mini-breakout if
|
Edison using the Arduino board, but will work with the Mini-breakout if
|
||||||
supplied with at least 4V. Revision v1.2 works well on all Intel boards.
|
supplied with at least 4V. Revision v1.2 works well on all Intel boards.
|
||||||
@ -49,6 +53,8 @@ such sensors and known workarounds if they exist.
|
|||||||
it will trigger continous callbacks when the sensor is not reading anything.
|
it will trigger continous callbacks when the sensor is not reading anything.
|
||||||
* **Grove RTC** (DS1307) is not compatible with the Intel Edison Arduino board
|
* **Grove RTC** (DS1307) is not compatible with the Intel Edison Arduino board
|
||||||
but will work with the Mini-breakout.
|
but will work with the Mini-breakout.
|
||||||
|
* **Grove Tempture & Humidity (High-Accuracy & Mini) Sensor** (TH02) only works
|
||||||
|
with the Intel Edison Arduino board when powered from the 3.3V rail.
|
||||||
|
|
||||||
#### Adafruit Sensors
|
#### Adafruit Sensors
|
||||||
|
|
||||||
@ -57,12 +63,15 @@ such sensors and known workarounds if they exist.
|
|||||||
|
|
||||||
#### Other Sensors
|
#### Other Sensors
|
||||||
|
|
||||||
* **NRF24L01** corrupted data packets are sent to the device due to the Intel
|
* **MLX90614** is not compatible with the Intel Galileo due to the inability
|
||||||
Edison SPI bus limitation. Sensor works as expected with the Intel Galileo
|
to change the I2C bus speed to 100 KHz.
|
||||||
boards.
|
* **MICSV89** is not compatible with the Intel Galileo due to the inability to
|
||||||
* **NRF8001** based devices do not initialize properly with provided examples
|
change the I2C bus speed to 100 KHz.
|
||||||
on Intel Edison boards also due to SPI bus limitation and data corruption.
|
* **MPL3115A2** uses repeated starts for I2C communication and may not work as
|
||||||
Works on Intel Galileo.
|
expected especially when other I2C sensors are present on the same bus.
|
||||||
|
* **InvenSense MPU9150 & MPU9250** will be unable to report magnetometer data
|
||||||
|
when used on the Intel Edison Arduino board because the integrated compass
|
||||||
|
chips are not detected on the I2C bus.
|
||||||
|
|
||||||
#### General
|
#### General
|
||||||
|
|
||||||
@ -74,10 +83,8 @@ Edison Mini-breakout. When this board is not an option, the sensor can be
|
|||||||
sometimes replaced with the same model from a different vendor.
|
sometimes replaced with the same model from a different vendor.
|
||||||
|
|
||||||
The Intel Edison *SPI* bus can corrupt data being sent across when certain
|
The Intel Edison *SPI* bus can corrupt data being sent across when certain
|
||||||
sensors are connected to it. Based on the sensor, this can affect functionality
|
sensors are connected to it, if using an old image. This has been resolved with
|
||||||
slightly or make the sensor entirely unusable. Unlike the I2C bus limitation,
|
the latest releases.
|
||||||
different boards are not likely to resolve this. A kernel update on the other
|
|
||||||
hand might help alleviate this.
|
|
||||||
|
|
||||||
On the Intel Galileo boards, the *UART* bus might drop data if several bytes
|
On the Intel Galileo boards, the *UART* bus might drop data if several bytes
|
||||||
are read at once.
|
are read at once.
|
||||||
|
@ -267,6 +267,7 @@ add_example (ds18b20)
|
|||||||
add_example (bmp280)
|
add_example (bmp280)
|
||||||
add_example (bno055)
|
add_example (bno055)
|
||||||
add_example (l3gd20)
|
add_example (l3gd20)
|
||||||
|
add_example (l3gd20-i2c)
|
||||||
add_example (bmx055)
|
add_example (bmx055)
|
||||||
add_example (ms5611)
|
add_example (ms5611)
|
||||||
|
|
||||||
|
123
examples/c++/l3gd20-i2c.cxx
Normal file
123
examples/c++/l3gd20-i2c.cxx
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
/*
|
||||||
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
* a copy of this software and associated documentation files (the
|
||||||
|
* "Software"), to deal in the Software without restriction, including
|
||||||
|
* without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
* permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
* the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <iostream>
|
||||||
|
#include <iomanip>
|
||||||
|
#include <math.h>
|
||||||
|
#include <signal.h>
|
||||||
|
#include "l3gd20.hpp"
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int shouldRun = true;
|
||||||
|
|
||||||
|
void sig_handler(int signo)
|
||||||
|
{
|
||||||
|
if (signo == SIGINT)
|
||||||
|
shouldRun = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
float rad2deg(float x)
|
||||||
|
{
|
||||||
|
return x * (180.0 / M_PI);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
signal(SIGINT, sig_handler);
|
||||||
|
//! [Interesting]
|
||||||
|
|
||||||
|
// Instantiate an L3GD20 using default parameters
|
||||||
|
upm::L3GD20 *sensor = new upm::L3GD20(L3GD20_DEFAULT_I2C_BUS,
|
||||||
|
L3GD20_DEFAULT_I2C_ADDR);
|
||||||
|
|
||||||
|
// set some parameters (these are already the defaults, but are
|
||||||
|
// provided here as an example)
|
||||||
|
|
||||||
|
// 250 deg/s sensitivity
|
||||||
|
sensor->setRange(sensor->FS_250);
|
||||||
|
|
||||||
|
// Set ODR to 95Hz, 25Hz cut-off
|
||||||
|
sensor->setODR(sensor->ODR_CUTOFF_95_25);
|
||||||
|
|
||||||
|
// If you already have calibration data, you can specify it here
|
||||||
|
// sensor->loadCalibratedData(-0.0296269637, -0.0080939643, -0.0077121737);
|
||||||
|
|
||||||
|
// now output data every 100 milliseconds
|
||||||
|
while (shouldRun)
|
||||||
|
{
|
||||||
|
float x, y, z;
|
||||||
|
|
||||||
|
sensor->update();
|
||||||
|
|
||||||
|
cout << "Calibrated: " << sensor->getCalibratedStatus() << endl;
|
||||||
|
|
||||||
|
// output is in radians/s
|
||||||
|
sensor->getGyroscope(&x, &y, &z);
|
||||||
|
cout << fixed << setprecision(1)
|
||||||
|
<< "Gyroscope x: " << x
|
||||||
|
<< " y: " << y
|
||||||
|
<< " z: " << z
|
||||||
|
<< " radians"
|
||||||
|
<< endl;
|
||||||
|
|
||||||
|
// same data converted to degrees/s
|
||||||
|
cout << "Gyroscope x: " << rad2deg(x)
|
||||||
|
<< " y: " << rad2deg(y)
|
||||||
|
<< " z: " << rad2deg(z)
|
||||||
|
<< " degrees"
|
||||||
|
<< endl;
|
||||||
|
|
||||||
|
// we show both C and F for temperature
|
||||||
|
cout << "Compensation Temperature: " << sensor->getTemperature(false)
|
||||||
|
<< " C / " << sensor->getTemperature(true) << " F"
|
||||||
|
<< endl;
|
||||||
|
|
||||||
|
cout << endl;
|
||||||
|
|
||||||
|
usleep(100000);
|
||||||
|
}
|
||||||
|
|
||||||
|
// dump the calibration values if we managed to calibrate
|
||||||
|
if (sensor->getCalibratedStatus())
|
||||||
|
{
|
||||||
|
float calX, calY, calZ;
|
||||||
|
sensor->getCalibratedData(&calX, &calY, &calZ);
|
||||||
|
|
||||||
|
cout << setprecision(10)
|
||||||
|
<< "Calibration values x: " << calX
|
||||||
|
<< " y: " << calY
|
||||||
|
<< " z: " << calZ
|
||||||
|
<< endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
cout << "Exiting..." << endl;
|
||||||
|
|
||||||
|
delete sensor;
|
||||||
|
|
||||||
|
//! [Interesting]
|
||||||
|
return 0;
|
||||||
|
}
|
@ -25,6 +25,7 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
#include <stdexcept>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include "otp538u.hpp"
|
#include "otp538u.hpp"
|
||||||
|
|
||||||
@ -52,14 +53,24 @@ int main()
|
|||||||
// Object temperature.
|
// Object temperature.
|
||||||
upm::OTP538U *temps = new upm::OTP538U(0, 1, OTP538U_AREF);
|
upm::OTP538U *temps = new upm::OTP538U(0, 1, OTP538U_AREF);
|
||||||
|
|
||||||
|
// enable debugging if you would like
|
||||||
|
// temps->setDebug(true);
|
||||||
|
|
||||||
// Output ambient and object temperatures
|
// Output ambient and object temperatures
|
||||||
while (shouldRun)
|
while (shouldRun)
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
cout << "Ambient temp: " << std::fixed << setprecision(2)
|
cout << "Ambient temp: " << std::fixed << setprecision(2)
|
||||||
<< temps->ambientTemperature()
|
<< temps->ambientTemperature()
|
||||||
<< " C, Object temp: " << temps->objectTemperature()
|
<< " C, Object temp: " << temps->objectTemperature()
|
||||||
<< " C" << endl;
|
<< " C" << endl;
|
||||||
|
}
|
||||||
|
catch (std::out_of_range& e) {
|
||||||
|
cerr << "Temperature(s) are out of range: " << e.what()
|
||||||
|
<< endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
cout << endl;
|
||||||
sleep(1);
|
sleep(1);
|
||||||
}
|
}
|
||||||
//! [Interesting]
|
//! [Interesting]
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Marc Graham <marc@m2ag.net>
|
* Author: Marc Graham <marc@m2ag.net>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Yannick Adam <yannick.adam@gmail.com>
|
* Author: Yannick Adam <yannick.adam@gmail.com>
|
||||||
* Copyright (c) 2016 Yannick Adam
|
* Copyright (c) 2016 Yannick Adam
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Ron Evans (@deadprogram)
|
* Author: Ron Evans (@deadprogram)
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Jun Kato
|
* Author: Jun Kato
|
||||||
* Contributions: Jon Trulson <jtrulson@ics.com>
|
* Contributions: Jon Trulson <jtrulson@ics.com>
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2016 Intel Corporation.
|
* Copyright (c) 2016 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Author: Shawn Hymel
|
* Author: Shawn Hymel
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Sarah Knepper <sarah.knepper@intel.com>
|
* Author: Sarah Knepper <sarah.knepper@intel.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
// Leave the above lines for propper jshinting
|
|
||||||
//Type Node.js Here :)
|
|
||||||
/*
|
/*
|
||||||
* The MIT License
|
* The MIT License
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Author: Jon Trulson <jtrulson@ics.com>
|
* Author: Jon Trulson <jtrulson@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2015 Intel Corporation.
|
* Copyright (c) 2015 Intel Corporation.
|
||||||
|
@ -1,6 +1,3 @@
|
|||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
/*global */
|
|
||||||
/*
|
/*
|
||||||
* Author: Zion Orent <zorent@ics.com>
|
* Author: Zion Orent <zorent@ics.com>
|
||||||
* Copyright (c) 2014 Intel Corporation.
|
* Copyright (c) 2014 Intel Corporation.
|
||||||
|
@ -7,8 +7,6 @@
|
|||||||
// in Javascript for some of the common LCD functions
|
// in Javascript for some of the common LCD functions
|
||||||
|
|
||||||
// configure jshint
|
// configure jshint
|
||||||
/*jslint node:true, vars:true, bitwise:true, unparam:true */
|
|
||||||
/*jshint unused:true */
|
|
||||||
|
|
||||||
var upmMICSV89 = require("jsupm_micsv89");
|
var upmMICSV89 = require("jsupm_micsv89");
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user