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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Improve the SPIv2 DMA example to verify it actually works.
Bob McWhirter
2021-07-23
1
-9
/
+22
*
SPIv2 + DMA.
Bob McWhirter
2021-07-23
6
-17
/
+344
*
Wire up peripheral DMA channels for SPI.
Bob McWhirter
2021-07-23
1
-0
/
+36
*
Avoid borrowck issue.
Bob McWhirter
2021-07-23
1
-1
/
+3
*
IntelliJ'd.
Bob McWhirter
2021-07-23
1
-2
/
+2
*
Add a non-minc write() to DMA which takes a count.
Bob McWhirter
2021-07-23
5
-7
/
+115
*
More unused allowances.
Bob McWhirter
2021-07-23
1
-0
/
+1
*
Include all versions when handing to CI.
Bob McWhirter
2021-07-23
1
-2
/
+2
*
Annotate to avoid unused warnings for the moment.
Bob McWhirter
2021-07-23
1
-0
/
+3
*
Begin reworking SPI to add DMA for stm32.
Bob McWhirter
2021-07-23
3
-44
/
+57
*
Checkpoint.
Bob McWhirter
2021-07-23
2
-11
/
+68
*
More formatting!
Bob McWhirter
2021-07-23
1
-9
/
+6
*
Formatting.
Bob McWhirter
2021-07-23
1
-1
/
+1
*
Split up the nRF impls for SPI traits.
Bob McWhirter
2021-07-23
1
-7
/
+16
*
Split up the SPI trait into several with shared Error associated type.
Bob McWhirter
2021-07-23
1
-9
/
+23
*
Merge pull request #313 from timokroeger/cleanup-gpio-clocks
Bob McWhirter
2021-07-23
22
-260
/
+46
|
\
|
*
Use `Dbgmcu::enable_all()` in stm32f4 examples
Timo Kröger
2021-07-23
6
-39
/
+10
|
*
stm32: No need to enable GPIO clocks manually
Timo Kröger
2021-07-23
21
-221
/
+36
|
/
*
Merge pull request #311 from bobmcwhirter/gpio_enable
Bob McWhirter
2021-07-23
4
-33
/
+47
|
\
|
*
Add a single-column variant to gpio_rcc! macro table
Bob McWhirter
2021-07-23
2
-2
/
+12
|
*
Auto-enable all GPIOs during init().
Bob McWhirter
2021-07-23
4
-33
/
+37
|
/
*
Merge pull request #310 from bobmcwhirter/dbg
Bob McWhirter
2021-07-23
5
-12
/
+50
|
\
|
*
Add a `Dbgmcu` struct capable of enabling all relevant DBGMCU.cr fields.
Bob McWhirter
2021-07-22
5
-12
/
+50
|
/
*
Merge pull request #308 from timokroeger/stmf4-example-cleanup
Dario Nieuwenhuis
2021-07-21
7
-175
/
+106
|
\
|
*
Cleanup stm32f4 examples
Timo Kröger
2021-07-21
7
-175
/
+106
*
|
Merge pull request #304 from bobmcwhirter/async_move_dma_transfer
Thales
2021-07-20
2
-28
/
+34
|
\
\
|
*
|
The `async move` portion of @thalesfragoso's i2c PR.
Bob McWhirter
2021-07-20
2
-28
/
+34
|
/
/
*
|
Merge pull request #302 from embassy-rs/rp-spi-fixes
Dario Nieuwenhuis
2021-07-20
4
-0
/
+227
|
\
\
|
*
|
rp/examples: add spi_display example
Dario Nieuwenhuis
2021-07-20
3
-0
/
+218
|
*
|
rp/spi: disable+enable when setting frequency
Dario Nieuwenhuis
2021-07-20
1
-0
/
+7
|
*
|
rp/spi: properly drain the rx buffer while writing
Dario Nieuwenhuis
2021-07-20
1
-0
/
+2
*
|
|
Merge pull request #226 from huntc/mpsc
Dario Nieuwenhuis
2021-07-20
5
-0
/
+994
|
\
\
\
|
|
/
/
|
/
|
|
|
*
|
Feature no longer required given 1.55
huntc
2021-07-15
1
-1
/
+0
|
*
|
Provides a cleaner construction of the channel with the common "new" naming
huntc
2021-07-15
3
-88
/
+51
|
*
|
Partial borrow for receiver to enforce compile-time mpssc
huntc
2021-07-15
1
-50
/
+61
|
*
|
Small tidy up
huntc
2021-07-15
1
-10
/
+10
|
*
|
Eliminates unsoundness by using an UnsafeCell for sharing the channel
huntc
2021-07-15
1
-174
/
+174
|
*
|
Tighten sender/receiver bounds
huntc
2021-07-15
1
-4
/
+12
|
*
|
Removed the closing state as it was not required
huntc
2021-07-15
1
-22
/
+13
|
*
|
Explicitly drop non consumed items
huntc
2021-07-15
1
-0
/
+11
|
*
|
Removed UB code around the send future
huntc
2021-07-15
1
-17
/
+15
|
*
|
Avoid a race condition by reducing the locks to one
huntc
2021-07-15
1
-31
/
+53
|
*
|
NoopMutex does not require an UnsafeCell
huntc
2021-07-15
1
-5
/
+3
|
*
|
Tidying
huntc
2021-07-15
1
-20
/
+10
|
*
|
Migrated to the waker registration functionality for Embassy specific optimis...
huntc
2021-07-15
2
-42
/
+20
|
*
|
Return a new future each time recv is called
huntc
2021-07-15
1
-19
/
+12
|
*
|
Use of a NoopMutex
huntc
2021-07-15
3
-66
/
+78
|
*
|
Remove the cell and trait
huntc
2021-07-15
2
-87
/
+90
|
*
|
ChannelState should be private
huntc
2021-07-15
1
-1
/
+1
|
*
|
Constraint the use of ChannelCell to just channels
huntc
2021-07-15
1
-1
/
+4
[next]