Skip to content

Commit 56b7f3b

Browse files
committed
fix translate omission; pca10059 fix in .travis.yml
1 parent b537397 commit 56b7f3b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ env:
1515
- TRAVIS_BOARD=feather_huzzah
1616
- TRAVIS_BOARD=circuitplayground_express
1717
- TRAVIS_BOARD=pca10056
18+
# The rest of the boards, in alphabetical order.
1819
- TRAVIS_BOARD=trinket_m0
1920
- TRAVIS_BOARD=feather_m4_express
2021
- TRAVIS_BOARD=grandcentral_m4_express
@@ -61,7 +62,7 @@ before_script:
6162
- ([[ -z "$TRAVIS_BOARD" || $TRAVIS_BOARD = "feather_huzzah" ]] || (wget https://s3.amazonaws.com/adafruit-circuit-python/gcc-arm-embedded_7-2018q2-1~trusty1_amd64.deb && sudo dpkg -i gcc-arm-embedded*_amd64.deb))
6263

6364
# For nrf builds
64-
- ([[ $TRAVIS_BOARD != "feather_nrf52832" && $TRAVIS_BOARD != "feather_nrf52840_express" && $TRAVIS_BOARD != "pca10056" ]] || sudo ports/nrf/drivers/bluetooth/download_ble_stack.sh)
65+
- ([[ $TRAVIS_BOARD != "feather_nrf52832" && $TRAVIS_BOARD != "feather_nrf52840_express" && $TRAVIS_BOARD != "pca10056" && TRAVIS_BOARD != "pca10059" ]] || sudo ports/nrf/drivers/bluetooth/download_ble_stack.sh)
6566
# For huzzah builds
6667
- if [[ $TRAVIS_BOARD = "feather_huzzah" ]]; then wget https://github.com/jepler/esp-open-sdk/releases/download/2018-06-10/xtensa-lx106-elf-standalone.tar.gz && tar xavf xtensa-lx106-elf-standalone.tar.gz; PATH=$(readlink -f xtensa-lx106-elf/bin):$PATH; fi
6768
# For coverage testing (upgrade is used to get latest urllib3 version)

ports/nrf/common-hal/busio/UART.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ uint32_t common_hal_busio_uart_rx_characters_available(busio_uart_obj_t *self) {
8383
}
8484

8585
void common_hal_busio_uart_clear_rx_buffer(busio_uart_obj_t *self) {
86-
mp_raise_NotImplementedError("busio.UART not yet implemented");
86+
mp_raise_NotImplementedError(translate("busio.UART not yet implemented"));
8787
}
8888

8989
bool common_hal_busio_uart_ready_to_tx(busio_uart_obj_t *self) {

0 commit comments

Comments
 (0)