HiI am having problems setting breakpoints when using the debugger in VS Code. I can step through manually but cannot seem to set breakpoints. Before starting to debug I can add a breakpoint at 50But when I run the code the breakpoint changes to a di...
Hi,Following the code from https://github.com/antoinevg/stm32f3-rust-examplesAnd my speaker is not making any noise when GND and PA04 connected. I have one of these https://www.jaycar.co.nz/27mm-all-purpose-replacement-speaker/p/AS3002Specifications:...
Hi,Developing software on STM32 MCUs - in the case STM32F3discovery.I am using rust and reasonably (no expert) used to developing and running code using the environment but I am unsure how to run the code outside of the debugger.I build a release ver...
I am guessing having read forum after forum that this is an old topicI am trying to get https://github.com/rayruu/MasteringMCU-guide/blob/master/Resources/Arduino/spi/002SPISlaveCmdHandling/002SPISlaveCmdHandling.inohttps://github.com/rayruu/Masterin...
Hi,With VS Code I want to use the memory view which works fine for decimal. But does not seem to work if I have 0x20000000.Here is my launch.json in case {
"name": "Launch2",
"type": "cppdbg",
"request": "launch",
"cwd": "...
In case anyone else is reading thisThe issue was with the out of date libraries I was using. I found this from help in room #stm32-rs on Element[dependencies]
cortex-m = "0.7.7"
cortex-m-rt = "0.7.4"
stm32f3xx-hal = { version = "0.10.0", features = ...
You as promised I have uncovered the problems getting this to work1/ The STM32F302R8TX_FLASH.ld does indeed send to bytesTo stop it doing this you need to change the write as others have suggested with*(volatile uint8_t *)&pSPIx->DR = *pTxBuffer;
// ...