Skip to content

Commit

Permalink
fixed can VDD pullup issue for Babel, updated changelog (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
suzonch authored Nov 14, 2022
1 parent 0e416c2 commit 0f1e4af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ This algoritm is employed in the SLCAN backend in [PyUAVCAN library](http://uavc

### Change Log

### V1.4

* Fix a hardware compatibility problem for Babel: disable the built-in pull-up resistor on the CAN power disable line.

#### v1.3

* Fix a hardware compatibility problem for Babel-Babel:
Expand Down
2 changes: 1 addition & 1 deletion bootloader/src/sys/board.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
PIN_PUPDR_PULLDOWN(GPIOA_PIN_5) |\
PIN_PUPDR_PULLDOWN(GPIOA_PIN_6) |\
PIN_PUPDR_PULLDOWN(7) |\
PIN_PUPDR_PULLUP(GPIOA_CAN_POWER_DIS) |\
PIN_PUPDR_FLOATING(GPIOA_CAN_POWER_DIS) |\
PIN_PUPDR_FLOATING(GPIOA_UART1_TX) |\
PIN_PUPDR_PULLUP(GPIOA_UART1_RX) |\
PIN_PUPDR_FLOATING(GPIOA_USB_DM) |\
Expand Down
2 changes: 1 addition & 1 deletion firmware/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ PROJECT = com.zubax.babel

HW_VERSION_MAJOR = 1
FW_VERSION_MAJOR = 1
FW_VERSION_MINOR = 3
FW_VERSION_MINOR = 4

#
# Application
Expand Down

0 comments on commit 0f1e4af

Please sign in to comment.