Skip to content

Commit 7052d8f

Browse files
author
Brian Baltz
committed
Merge pull request #52 from 01org/arduino101-rename
ATLEDGE-364 Rename EDU to Arduino 101
2 parents 6efbac6 + c5e9152 commit 7052d8f

File tree

115 files changed

+74
-82
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+74
-82
lines changed

README.md

Lines changed: 1 addition & 1 deletion

boards.txt

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,31 @@
22

33
##############################################################
44

5-
intel_edu_x.name=Intel® EDU
6-
7-
intel_edu_x.vid.0=0x8087
8-
intel_edu_x.pid.0=0x0AB6
9-
intel_edu_x.vid.0x2A03.warning=Uncertified
10-
11-
intel_edu_x.upload.tool=eduload
12-
intel_edu_x.upload.protocol=script
13-
intel_edu_x.upload.maximum_size=196608
14-
intel_edu_x.upload.use_1200bps_touch=true
15-
intel_edu_x.upload.wait_for_upload_port=false
16-
intel_edu_x.upload.native_usb=false
17-
intel_edu_x.upload.params.quiet=-q
18-
intel_edu_x.upload.params.verbose=-q
19-
20-
intel_edu_x.build.usb_product="Intel EDU"
21-
intel_edu_x.build.mcu=ARCv2EM
22-
intel_edu_x.build.f_cpu=32000000L
23-
intel_edu_x.build.board=ARC32_TOOLS
24-
intel_edu_x.build.core=arduino
25-
intel_edu_x.build.ldscript=linker_scripts/flash.ld
26-
intel_edu_x.build.variant=intel_edu_x
27-
intel_edu_x.build.variant_system_lib=arc32drv_edu
28-
intel_edu_x.build.vid=0x8087
29-
intel_edu_x.build.pid=0x0AB6
5+
arduino_101.name=Arduino 101
6+
7+
arduino_101.vid.0=0x8087
8+
arduino_101.pid.0=0x0AB6
9+
arduino_101.vid.0x2A03.warning=Uncertified
10+
11+
arduino_101.upload.tool=arduino101load
12+
arduino_101.upload.protocol=script
13+
arduino_101.upload.maximum_size=196608
14+
arduino_101.upload.use_1200bps_touch=true
15+
arduino_101.upload.wait_for_upload_port=false
16+
arduino_101.upload.native_usb=false
17+
arduino_101.upload.params.quiet=-q
18+
arduino_101.upload.params.verbose=-q
19+
20+
arduino_101.build.usb_product="Arduino 101"
21+
arduino_101.build.mcu=ARCv2EM
22+
arduino_101.build.f_cpu=32000000L
23+
arduino_101.build.board=ARC32_TOOLS
24+
arduino_101.build.core=arduino
25+
arduino_101.build.ldscript=linker_scripts/flash.ld
26+
arduino_101.build.variant=arduino_101
27+
arduino_101.build.variant_system_lib=arc32drv_arduino101
28+
arduino_101.build.vid=0x8087
29+
arduino_101.build.pid=0x0AB6
3030

3131
##############################################################
3232

cores/arduino/CDCSerialClass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
License along with this library; if not, write to the Free Software
1717
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1818
19-
CDC-ACM class for Intel EDU - Aug 2015 <[email protected]>
19+
CDC-ACM class for Arduino 101 - Aug 2015 <[email protected]>
2020
2121
*/
2222

cores/arduino/CDCSerialClass.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
License along with this library; if not, write to the Free Software
1717
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1818
19-
CDC-ACM class for Intel EDU - Aug 2015 <[email protected]>
19+
CDC-ACM class for Arduino 101 - Aug 2015 <[email protected]>
2020
2121
*/
2222

cores/arduino/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
main.cpp userspace main loop for Intel EDU family boards
2+
main.cpp userspace main loop for Arduino 101 family boards
33
Copyright (C) 2014 Intel Corporation
44
55
This library is free software; you can redistribute it and/or

cores/arduino/wiring.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ extern void initVariant( void ) ;
3636
extern void init( void ) ;
3737

3838
/**
39-
* \brief Returns the number of milliseconds since the Intel EDU board began
39+
* \brief Returns the number of milliseconds since the Arduino 101 board began
4040
* running the current program.
4141
*
4242
* This number will practically never overflow (go back to zero).
@@ -46,7 +46,7 @@ extern void init( void ) ;
4646
extern uint64_t millis( void ) ;
4747

4848
/**
49-
* \brief Returns the number of microseconds since the Intel EDU board began
49+
* \brief Returns the number of microseconds since the Arduino 101 board began
5050
* running the current program.
5151
*
5252
* This number will practically never overflow (go back to zero).

cores/arduino/wiring_analog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
extern "C" {
2424
#endif
2525

26-
/* TODO - update analogReference and other ADC-related functions for Intel EDU */
26+
/* TODO - update analogReference and other ADC-related functions for Arduino 101 */
2727

2828
/*
2929
* \brief SAM3 products have only one reference for ADC

cores/arduino/wiring_digital.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ extern void pinMode( uint8_t pin, uint8_t mode ) ;
3737
* If the pin has been configured as an OUTPUT with pinMode(), its voltage will be set to the
3838
* corresponding value: 3.3V for HIGH, 0V (ground) for LOW.
3939
*
40-
* TODO - update the text below for Intel EDU
40+
* TODO - update the text below for Arduino 101
4141
*
4242
* If the pin is configured as an INPUT, writing a HIGH value with digitalWrite() will enable an internal
4343
* 20K pullup resistor (see the tutorial on digital pins). Writing LOW will disable the pullup. The pullup

cores/arduino/wiring_private.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
2222
$Id: wiring.h 239 2007-01-12 17:58:39Z mellis $
2323
24-
Modified to allow compiling for Intel EDU - September 2015 <[email protected]>
24+
Modified to allow compiling for Arduino 101 - September 2015 <[email protected]>
2525
*/
2626

2727
#ifndef WiringPrivate_h

libraries/SPI/SPI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright (c) 2014 by Paul Stoffregen <[email protected]> (Transaction API)
44
* Copyright (c) 2014 by Matthijs Kooijman <[email protected]> (SPISettings AVR)
55
* Copyright (c) 2014 by Andrew J. Kroll <[email protected]> (atomicity fixes)
6-
* Copyright (c) 2015 by Intel Corporation <[email protected]> (Intel EDU support)
6+
* Copyright (c) 2015 by Intel Corporation <[email protected]> (Arduino 101 support)
77
* SPI Master library for arduino.
88
*
99
* This file is free software; you can redistribute it and/or modify

0 commit comments

Comments
 (0)