Skip to content

Commit 7a09bd3

Browse files
committed
feat: potentiometer control of VESC over BLE working
1 parent 3a0a30c commit 7a09bd3

25 files changed

+382
-2967
lines changed

Cargo.lock

Lines changed: 65 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ members = [
88
opt-level = "s"
99

1010
[profile.release]
11+
lto = true
1112
opt-level = "s"
1213
debug = true

controller/.gdbinit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ end
44

55
set pagination off
66

7-
target extended-remote /dev/cu.usbmodem34
7+
target extended-remote /dev/cu.usbmodemE4D7B7CE1
88
mon swdp_scan
99
att 1
1010

controller/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,19 @@ test = false
1010
bench = false
1111

1212
[dependencies]
13-
cortex-m = "0.6.0"
13+
cortex-m = "0.5.8"
1414
cortex-m-semihosting = "0.3.2"
1515
cortex-m-rtfm = "0.4.2"
1616
cortex-m-rt = "0.6.8"
1717
embedded-hal = "0.2.2"
18-
nrf52810-hal = { git = "https://github.com/chocol4te/nrf52-hal", rev = "f92e4ea", features = ["rt"] }
18+
nrf52810-hal = { git = "https://github.com/nrf-rs/nrf52-hal", rev = "6c1ce70", features = ["rt"] }
1919
nb = "0.1.1"
2020
fpa = "0.1.0"
2121
byteorder = { version = "1.3.1", default-features = false }
2222
panic-semihosting = "0.5.1"
2323
bitflags = "1.0.4"
2424
uuid = { version = "0.7.4", default-features = false }
25+
rubble = { git = "https://github.com/jonas-schievink/rubble.git", rev = "640b705" }
26+
rubble-nrf52810 = { git = "https://github.com/jonas-schievink/rubble.git", rev = "640b705" }
27+
log = "0.4.6"
28+
bbqueue = "0.3.2"

controller/src/ble/beacon.rs

Lines changed: 0 additions & 53 deletions
This file was deleted.

0 commit comments

Comments
 (0)