summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Shawcroft <scott@chickadee.tech>2016-10-14 13:01:59 -0700
committerScott Shawcroft <scott@chickadee.tech>2016-10-14 13:10:17 -0700
commitcb99ae50328de982244ed5cd486ccd57f5bd93bd (patch)
tree37105fe22077ff0092ed7dfe285c0c7684291db5
parent343ff4faed9ec03c03382022e9c32c5d411ed6a9 (diff)
atmel-samd: Rename Feather M0 Bluefruit files to Feather M0 Basic because there isn't anything Bluefruit specific yet.v1.8.4-20161014
-rw-r--r--atmel-samd/README.md6
-rw-r--r--atmel-samd/boards/feather_m0_basic/conf_access.h (renamed from atmel-samd/boards/feather_m0_bluefruit_le/conf_access.h)0
-rw-r--r--atmel-samd/boards/feather_m0_basic/conf_board.h (renamed from atmel-samd/boards/feather_m0_bluefruit_le/conf_board.h)0
-rw-r--r--atmel-samd/boards/feather_m0_basic/conf_usb.h (renamed from atmel-samd/boards/feather_m0_bluefruit_le/conf_usb.h)2
-rw-r--r--atmel-samd/boards/feather_m0_basic/init.c (renamed from atmel-samd/boards/feather_m0_bluefruit_le/init.c)0
-rw-r--r--atmel-samd/boards/feather_m0_basic/mpconfigboard.h (renamed from atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.h)2
-rw-r--r--atmel-samd/boards/feather_m0_basic/mpconfigboard.mk (renamed from atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.mk)0
-rw-r--r--atmel-samd/boards/feather_m0_basic/pins.c (renamed from atmel-samd/boards/feather_m0_bluefruit_le/pins.c)0
-rw-r--r--atmel-samd/boards/feather_m0_basic/pins.h (renamed from atmel-samd/boards/feather_m0_bluefruit_le/pins.h)6
9 files changed, 8 insertions, 8 deletions
diff --git a/atmel-samd/README.md b/atmel-samd/README.md
index 235203e57..105f629e8 100644
--- a/atmel-samd/README.md
+++ b/atmel-samd/README.md
@@ -1,7 +1,7 @@
# SAMD21x18
This port brings MicroPython to SAMD21x18 based development boards including the
-Arduino Zero, Adafruit Feather M0 and Adafruit M0 BLE.
+Arduino Zero, Adafruit Feather M0 Basic and Adafruit M0 Bluefruit LE.
## Building
@@ -11,7 +11,7 @@ To build for the Arduino Zero:
To build for other boards you must change it by setting `BOARD`. For example:
- make BOARD=feather_m0_ble
+ make BOARD=feather_m0_basic
Board names are the directory names in the `boards` folder.
@@ -23,7 +23,7 @@ to flash MicroPython. First, activate the bootloader. On Adafruit Feathers you
can double click the reset button and the #13 will fade in and out. Finally,
run bossac:
- tools/bossac_osx -e -w -v -b -R build-feather_m0_ble/firmware.bin
+ tools/bossac_osx -e -w -v -b -R build-feather_m0_basic/firmware.bin
### No Bootloader via GDB
This method works for loading MicroPython onto the Arduino Zero via the
diff --git a/atmel-samd/boards/feather_m0_bluefruit_le/conf_access.h b/atmel-samd/boards/feather_m0_basic/conf_access.h
index 8cf104e69..8cf104e69 100644
--- a/atmel-samd/boards/feather_m0_bluefruit_le/conf_access.h
+++ b/atmel-samd/boards/feather_m0_basic/conf_access.h
diff --git a/atmel-samd/boards/feather_m0_bluefruit_le/conf_board.h b/atmel-samd/boards/feather_m0_basic/conf_board.h
index 7b88c97fc..7b88c97fc 100644
--- a/atmel-samd/boards/feather_m0_bluefruit_le/conf_board.h
+++ b/atmel-samd/boards/feather_m0_basic/conf_board.h
diff --git a/atmel-samd/boards/feather_m0_bluefruit_le/conf_usb.h b/atmel-samd/boards/feather_m0_basic/conf_usb.h
index 4155c0fef..235ce8335 100644
--- a/atmel-samd/boards/feather_m0_bluefruit_le/conf_usb.h
+++ b/atmel-samd/boards/feather_m0_basic/conf_usb.h
@@ -19,7 +19,7 @@
#endif
#ifndef USB_DEVICE_PRODUCT_NAME
-# define USB_DEVICE_PRODUCT_NAME "Feather M0 Bluefruit LE"
+# define USB_DEVICE_PRODUCT_NAME "Feather M0 Basic"
#endif
#define USB_DEVICE_GET_SERIAL_NAME_POINTER serial_number
diff --git a/atmel-samd/boards/feather_m0_bluefruit_le/init.c b/atmel-samd/boards/feather_m0_basic/init.c
index 88608c0fb..88608c0fb 100644
--- a/atmel-samd/boards/feather_m0_bluefruit_le/init.c
+++ b/atmel-samd/boards/feather_m0_basic/init.c
diff --git a/atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.h b/atmel-samd/boards/feather_m0_basic/mpconfigboard.h
index 622ba8fd3..08a3ab0b3 100644
--- a/atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.h
+++ b/atmel-samd/boards/feather_m0_basic/mpconfigboard.h
@@ -3,5 +3,5 @@
// #define UART_REPL
#define USB_REPL
-#define MICROPY_HW_BOARD_NAME "Adafruit Feather M0 Bluefruit LE"
+#define MICROPY_HW_BOARD_NAME "Adafruit Feather M0 Basic"
#define MICROPY_HW_MCU_NAME "samd21g18"
diff --git a/atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.mk b/atmel-samd/boards/feather_m0_basic/mpconfigboard.mk
index d7f5c739b..d7f5c739b 100644
--- a/atmel-samd/boards/feather_m0_bluefruit_le/mpconfigboard.mk
+++ b/atmel-samd/boards/feather_m0_basic/mpconfigboard.mk
diff --git a/atmel-samd/boards/feather_m0_bluefruit_le/pins.c b/atmel-samd/boards/feather_m0_basic/pins.c
index f86f20713..f86f20713 100644
--- a/atmel-samd/boards/feather_m0_bluefruit_le/pins.c
+++ b/atmel-samd/boards/feather_m0_basic/pins.c
diff --git a/atmel-samd/boards/feather_m0_bluefruit_le/pins.h b/atmel-samd/boards/feather_m0_basic/pins.h
index 9623a5a4f..0ca9d1f5a 100644
--- a/atmel-samd/boards/feather_m0_bluefruit_le/pins.h
+++ b/atmel-samd/boards/feather_m0_basic/pins.h
@@ -1,6 +1,6 @@
-#ifndef __MICROPY_INCLUDED_ATMEL_SAMD_BOARDS_FEATHER_M0_BLUEFRUIT_LE_PINS_H__
-#define __MICROPY_INCLUDED_ATMEL_SAMD_BOARDS_FEATHER_M0_BLUEFRUIT_LE_PINS_H__
+#ifndef __MICROPY_INCLUDED_ATMEL_SAMD_BOARDS_FEATHER_M0_BASIC_PINS_H__
+#define __MICROPY_INCLUDED_ATMEL_SAMD_BOARDS_FEATHER_M0_BASIC_PINS_H__
#include "modmachine_pin.h"
@@ -25,4 +25,4 @@ extern const pin_obj_t pin_PA16;
extern const pin_obj_t pin_PA19;
extern const pin_obj_t pin_PA17;
-#endif // __MICROPY_INCLUDED_ATMEL_SAMD_BOARDS_FEATHER_M0_BLUEFRUIT_LE_PINS_H__
+#endif // __MICROPY_INCLUDED_ATMEL_SAMD_BOARDS_FEATHER_M0_BASIC_PINS_H__