You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
summary: Small refactor of some spi and timerwrapper functionality
3
+
4
+
timerwrapper:
5
+
- Add `set_callback(void (*callback)(void*), void* callback_data)` to set the callback and its data instead of needing to call `configurexxbit()` and set the period.
6
+
- Add `set_limit_value(uint32_t arr)` to set the arr, this will likely be changed to use a `uint32_t` type only when using a 32 bit timer, for now it is just an alias to `instance->tim->ARR = arr;`.
7
+
8
+
spi:
9
+
- Add `transcieve` with ptr + data explicitly instead of using a span since it's sometimes a pain in the ass to use.
0 commit comments