index
:
embassy
cyw43-link-status-update
fix-input-sync-bypass
main
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
embassy-stm32
/
src
/
can
Commit message (
Expand
)
Author
Age
Files
Lines
...
|
*
stm32: can: fd: introduce BusErrorMode with docs and Properties getter
Torin Cooper-Bennun
2024-04-23
2
-3
/
+29
|
*
stm32: can: fd: fix a couple doc comments
Torin Cooper-Bennun
2024-04-23
1
-2
/
+2
|
*
stm32: can: fd: Properties: rm &mut refs; make !Sync; rename getters
Torin Cooper-Bennun
2024-04-22
1
-32
/
+15
|
*
stm32: can: fd: Properties for common runtime get/set operations
Torin Cooper-Bennun
2024-04-22
1
-27
/
+105
*
|
rustfmt fixes
Eric Yanush
2024-04-22
1
-5
/
+6
*
|
Add sleep/wakeup handling for bxCAN peripherals
Eric Yanush
2024-04-22
1
-1
/
+47
*
|
rustfmt whitespace fixes
Eric Yanush
2024-04-22
2
-3
/
+3
*
|
Enable LEC interrupt as well
Eric Yanush
2024-04-22
1
-0
/
+1
*
|
Ensure bus errors are forwarded only once, enable bus off/passive/warning int...
Eric Yanush
2024-04-22
2
-3
/
+28
|
/
*
stm32: can: fd: implement bus-off recovery
Torin Cooper-Bennun
2024-04-17
2
-0
/
+9
*
stm32: can: fd: on_interrupt: simplify, rm redundant code
Torin Cooper-Bennun
2024-04-17
1
-31
/
+21
*
stm32/can: simplify bxcan api, merging bx::* into the main structs.
Dario Nieuwenhuis
2024-04-02
7
-1126
/
+785
*
RTR fix.
Corey Schuhen
2024-03-28
1
-1
/
+2
*
Fixes for no-time.
Corey Schuhen
2024-03-28
2
-12
/
+20
*
CAN: Unify API's between BXCAN and FDCAN. Use Envelope for all read methods i...
Corey Schuhen
2024-03-28
6
-105
/
+162
*
BXCAN: Add struct that combines Buffered RX and Buffered TX.
Corey Schuhen
2024-03-28
1
-1
/
+54
*
BXCAN: Create TxMode in order to support buffered TX.
Corey Schuhen
2024-03-28
2
-15
/
+120
*
BXCAN: Create RxMode enum and move reader methods into it, laying foundations...
Corey Schuhen
2024-03-28
4
-73
/
+219
*
BXCAN: Register access into new Registers struct.
Corey Schuhen
2024-03-28
4
-367
/
+452
*
BXCAN: Cut out more that wasn't required from BXCAN crate.
Corey Schuhen
2024-03-28
2
-120
/
+12
*
CAN: Move some FDCAN definitions into a module to share with BXCAN.
Corey Schuhen
2024-03-28
2
-52
/
+61
*
embassy_stm32: Preseve the RTR flag in messages.
Maarten de Vries
2024-03-27
1
-4
/
+4
*
stm32: use private_bounds for sealed traits.
Dario Nieuwenhuis
2024-03-23
3
-260
/
+183
*
Fix warnings in recent nightly.
Dario Nieuwenhuis
2024-03-20
4
-24
/
+3
*
FDCAN: Fix offset issue preventing CAN2 and CAN3 from working.
Corey Schuhen
2024-03-16
1
-1
/
+6
*
Remove unused methods including incorrect #[must_use...
Corey Schuhen
2024-03-14
1
-16
/
+0
*
Use Result instead of Option for Frame creation.
Corey Schuhen
2024-03-13
5
-96
/
+74
*
Shared frame types.
Corey Schuhen
2024-03-13
6
-409
/
+131
*
Dummy
Corey Schuhen
2024-03-07
1
-2
/
+1
*
Remove old PAC from bscan crate.
Corey Schuhen
2024-03-07
28
-6559
/
+0
*
Remove usage of old PAC
Corey Schuhen
2024-03-07
2
-14
/
+2
*
Fix examples and improve imports required.
Corey Schuhen
2024-03-07
1
-1
/
+1
*
Documentation.
Corey Schuhen
2024-03-07
2
-1
/
+7
*
Port registers access to using Embassy PAC
Corey Schuhen
2024-03-07
4
-279
/
+218
*
Remove unused.
Corey Schuhen
2024-03-07
2
-202
/
+0
*
Apply cargo fmt
Corey Schuhen
2024-03-07
3
-90
/
+32
*
Make use of internal BXCAN crate work. Tested on stm32f103 with real bus and ...
Corey Schuhen
2024-03-07
31
-369
/
+370
*
RAW copy of files from BXCAN crate. No changes whatsoever.
Corey Schuhen
2024-03-07
33
-0
/
+8667
*
stm32: can:fd: merge read impls; buffered RX returns Result<_, BusError>
Torin Cooper-Bennun
2024-03-04
1
-28
/
+37
*
stm32: can: fd: rename TxBufferMode::Queue -> ::Priority for clarity
Torin Cooper-Bennun
2024-03-04
1
-6
/
+13
*
Restore init order to restore H7.
Corey Schuhen
2024-03-02
2
-112
/
+113
*
Delay setting TX buffer mode until user had a chance to configure it.
Corey Schuhen
2024-03-02
2
-7
/
+9
*
stm32: can: fd: rename abort_pending_mailbox, rm pub qualifier
Torin Cooper-Bennun
2024-03-02
1
-4
/
+4
*
stm32: can: fd: write: if in TX FIFO mode & bufs full, then abort
Torin Cooper-Bennun
2024-03-02
2
-8
/
+24
*
stm32: can: fd: allow TX buffers in FIFO mode
Torin Cooper-Bennun
2024-03-02
2
-4
/
+23
*
Writing to TX buffer also needs to fire an interrupt to kick off transmission...
Corey Schuhen
2024-03-02
1
-4
/
+58
*
stm32: can: fd: Fix Frame is_extended() function
Siebe Claes
2024-03-01
1
-2
/
+2
*
Merge pull request #2637 from cschuhen/feature/fix_buf_size
Dario Nieuwenhuis
2024-02-28
1
-1
/
+1
|
\
|
*
Buffer is not big enough for FD frames.
Corey Schuhen
2024-02-28
1
-1
/
+1
*
|
update metapac
eZio Pan
2024-02-29
1
-1
/
+3
|
/
[prev]
[next]