-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpico42.rs
249 lines (212 loc) · 7.7 KB
/
pico42.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
#![no_std]
#![no_main]
mod board {
use rp2040_hal as hal;
use hal::gpio::bank0;
use usbd_smart_keyboard::matrix::Matrix;
use rp2040_rtic_smart_keyboard::input::{Input, Output, UnconfiguredPin};
pub const COLS: usize = 12;
pub const ROWS: usize = 4;
#[rustfmt::skip]
pub const KEYMAP_INDICES: [[Option<u16>; COLS]; ROWS] = [
[ Some(0), Some(1), Some(2), Some(3), Some(4), None, None, Some(5), Some(6), Some(7), Some(8), Some(9)],
[Some(10), Some(11), Some(12), Some(13), Some(14), None, None, Some(15), Some(16), Some(17), Some(18), Some(19)],
[Some(20), Some(21), Some(22), Some(23), Some(24), None, None, Some(25), Some(26), Some(27), Some(28), Some(29)],
[Some(30), Some(31), Some(32), Some(33), Some(34), Some(35), Some(36), Some(37), Some(38), Some(39), Some(40), Some(41)],
];
pub use rp2040_rtic_smart_keyboard::app_prelude::VID;
pub const PID: u16 = 0x0005;
pub const MANUFACTURER: &str = "smart-keyboard";
pub const PRODUCT: &str = "Pico42";
pub type Keyboard = usbd_smart_keyboard::input::Keyboard<
COLS,
ROWS,
Matrix<Input, Output, COLS, ROWS, hal::Timer>,
>;
pub type PressedKeys = usbd_smart_keyboard::input::PressedKeys<COLS, ROWS>;
pub fn cols(
gp0: UnconfiguredPin<bank0::Gpio0>,
gp1: UnconfiguredPin<bank0::Gpio1>,
gp2: UnconfiguredPin<bank0::Gpio2>,
gp3: UnconfiguredPin<bank0::Gpio3>,
gp4: UnconfiguredPin<bank0::Gpio4>,
gp5: UnconfiguredPin<bank0::Gpio5>,
gp6: UnconfiguredPin<bank0::Gpio6>,
gp7: UnconfiguredPin<bank0::Gpio7>,
gp8: UnconfiguredPin<bank0::Gpio8>,
gp9: UnconfiguredPin<bank0::Gpio9>,
gp10: UnconfiguredPin<bank0::Gpio10>,
gp11: UnconfiguredPin<bank0::Gpio11>,
) -> [Input; COLS] {
[
gp0.into_pull_up_input().into_dyn_pin(),
gp1.into_pull_up_input().into_dyn_pin(),
gp2.into_pull_up_input().into_dyn_pin(),
gp3.into_pull_up_input().into_dyn_pin(),
gp4.into_pull_up_input().into_dyn_pin(),
gp5.into_pull_up_input().into_dyn_pin(),
gp6.into_pull_up_input().into_dyn_pin(),
gp7.into_pull_up_input().into_dyn_pin(),
gp8.into_pull_up_input().into_dyn_pin(),
gp9.into_pull_up_input().into_dyn_pin(),
gp10.into_pull_up_input().into_dyn_pin(),
gp11.into_pull_up_input().into_dyn_pin(),
]
}
pub fn rows(
gp14: UnconfiguredPin<bank0::Gpio14>,
gp15: UnconfiguredPin<bank0::Gpio15>,
gp16: UnconfiguredPin<bank0::Gpio16>,
gp17: UnconfiguredPin<bank0::Gpio17>,
) -> [Output; ROWS] {
[
gp14.into_push_pull_output().into_dyn_pin(),
gp15.into_push_pull_output().into_dyn_pin(),
gp16.into_push_pull_output().into_dyn_pin(),
gp17.into_push_pull_output().into_dyn_pin(),
]
}
macro_rules! rows_and_cols {
($gpio_pins:expr, $cols:ident, $rows:ident) => {
let $cols = crate::board::cols(
$gpio_pins.gpio0,
$gpio_pins.gpio1,
$gpio_pins.gpio2,
$gpio_pins.gpio3,
$gpio_pins.gpio4,
$gpio_pins.gpio5,
$gpio_pins.gpio6,
$gpio_pins.gpio7,
$gpio_pins.gpio8,
$gpio_pins.gpio9,
$gpio_pins.gpio10,
$gpio_pins.gpio11,
);
let $rows = crate::board::rows(
$gpio_pins.gpio14,
$gpio_pins.gpio15,
$gpio_pins.gpio16,
$gpio_pins.gpio17,
);
};
}
pub(crate) use rows_and_cols;
}
#[rtic::app(
device = rp_pico::hal::pac,
)]
mod app {
use panic_halt as _;
use rp2040_rtic_smart_keyboard::app_prelude::*;
use usbd_smart_keyboard::input::smart_keymap::keymap_index_of;
use usbd_smart_keyboard::input::smart_keymap::KeyboardBackend;
use usbd_smart_keyboard::input::MatrixScanner;
use usbd_smart_keyboard::matrix::Matrix as DelayedMatrix;
use super::board;
use board::Keyboard;
use board::PressedKeys;
use board::KEYMAP_INDICES;
#[shared]
struct Shared {
usb_dev: UsbDevice,
usb_class: UsbClass,
}
#[local]
struct Local {
alarm: timer::Alarm0,
keyboard: Keyboard,
backend: KeyboardBackend,
}
#[init(local=[
usb_bus: Option<UsbBusAllocator<UsbBus>> = None
])]
fn init(mut ctx: init::Context) -> (Shared, Local, init::Monotonics) {
let (mut _watchdog, clocks) = app_init::init_clocks(
ctx.device.WATCHDOG,
ctx.device.XOSC,
ctx.device.CLOCKS,
ctx.device.PLL_SYS,
ctx.device.PLL_USB,
&mut ctx.device.RESETS,
);
let (timer, alarm) =
app_init::init_timer(ctx.device.TIMER, &mut ctx.device.RESETS, &clocks);
// Set up the USB driver
*ctx.local.usb_bus = Some(UsbBusAllocator::new(hal::usb::UsbBus::new(
ctx.device.USBCTRL_REGS,
ctx.device.USBCTRL_DPRAM,
clocks.usb_clock,
true,
&mut ctx.device.RESETS,
)));
let usb_bus = ctx.local.usb_bus.as_ref().unwrap();
let (usb_dev, usb_class) = app_init::init_usb_device(
usb_bus,
board::VID,
board::PID,
board::MANUFACTURER,
board::PRODUCT,
);
unsafe {
pac::NVIC::unmask(pac::Interrupt::USBCTRL_IRQ);
pac::NVIC::unmask(pac::Interrupt::TIMER_IRQ_0);
};
let sio = Sio::new(ctx.device.SIO);
let gpio_pins = rp_pico::Pins::new(
ctx.device.IO_BANK0,
ctx.device.PADS_BANK0,
sio.gpio_bank0,
&mut ctx.device.RESETS,
);
board::rows_and_cols!(gpio_pins, cols, rows);
let mut matrix = DelayedMatrix::new(cols, rows, timer, 5, 5).unwrap();
// Check if bootloader pressed
if matrix.is_boot_key_pressed() {
rp2040_hal::rom_data::reset_to_usb_boot(0, 0);
}
let keyboard = Keyboard {
matrix,
debouncer: Debouncer::new(PressedKeys::default(), PressedKeys::default(), 25),
};
let backend = {
use smart_keymap::init;
use smart_keymap::keymap::Keymap;
let keymap = Keymap::new(init::KEY_DEFINITIONS, init::CONTEXT);
KeyboardBackend::new(keymap)
};
(
Shared { usb_dev, usb_class },
Local {
alarm,
keyboard,
backend,
},
init::Monotonics(),
)
}
#[task(binds = USBCTRL_IRQ, priority = 2, shared = [usb_dev, usb_class])]
fn usb_tx(c: usb_tx::Context) {
let usb_tx::SharedResources { usb_dev, usb_class } = c.shared;
(usb_dev, usb_class).lock(|mut ud, mut uc| usb_poll(&mut ud, &mut uc));
}
#[task(binds = TIMER_IRQ_0, priority = 1, shared = [usb_class], local = [keyboard, backend, alarm])]
fn tick(c: tick::Context) {
let tick::SharedResources { mut usb_class } = c.shared;
let tick::LocalResources {
alarm,
keyboard,
backend,
} = c.local;
alarm.clear_interrupt();
alarm.schedule(1.millis()).unwrap();
for event in keyboard.events() {
if let Some(event) = keymap_index_of(&KEYMAP_INDICES, event) {
backend.event(event);
}
}
backend.tick();
usb_class.lock(|k| {
backend.write_reports(k);
});
}
}