8000 fix nrf builds; sphinx 1.8.0 crashing: use lower version · sparkfun/circuitpython@6a72084 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6a72084

Browse files
committed
fix nrf builds; sphinx 1.8.0 crashing: use lower version
1 parent 6a046f5 commit 6a72084

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ before_script:
6464
- 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
6565
# For coverage testing (upgrade is used to get latest urllib3 version)
6666
- ([[ -z "$TRAVIS_TEST" ]] || sudo pip install --upgrade cpp-coveralls)
67-
- ([[ $TRAVIS_TEST != "docs" ]] || sudo pip install Sphinx sphinx-rtd-theme recommonmark)
67+
- ([[ $TRAVIS_TEST != "docs" ]] || sudo pip install 'Sphinx<1.8.0' sphinx-rtd-theme recommonmark)
6868
- gcc --version
6969
- ([[ -z "$TRAVIS_BOARD" ]] || arm-none-eabi-gcc --version)
7070
- python3 --version

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ uint32_t common_hal_busio_uart_rx_characters_available(busio_uart_obj_t *self) {
8383
return 0;
8484
}
8585

86+
void common_hal_busio_uart_clear_rx_buffer(busio_uart_obj_t *self) {
87+
mp_raise_NotImplementedError("busio.UART not yet implemented");
88+
}
89+
8690
bool common_hal_busio_uart_ready_to_tx(busio_uart_obj_t *self) {
8791
mp_raise_NotImplementedError("busio.UART not yet implemented");
8892
return false;

0 commit comments

Comments
 (0)
0