Search found 45 matches
- Sat Nov 07, 2020 6:52 pm
- Forum: STM32 Support
- Topic: STM32F103C8T6 USB CDC
- Replies: 5
- Views: 533
Re: STM32F103C8T6 USB CDC
I have STM32F103C8T6 eval board "Blue Pill". I don't know if you are aware of this, but recently a lot of the boards sold as "Blue Pill" do not contain true STM32F103 from ST anymore, but MCUs that are more or less compatible from other manufacturers. Sometimes they carry their ...
- Thu Oct 29, 2020 10:29 pm
- Forum: STM32 Support
- Topic: Jump to bootloader.
- Replies: 7
- Views: 489
Re: Jump to bootloader.
I want to do exactly the same thing in my next project. Which exact STM32 model were you using? I guess the bootloader code is quite different between the series, as they have a wide variety of different features. Were you able to implement Giovannis suggestion, a module after vector.S and before cr...
- Fri May 22, 2020 9:34 pm
- Forum: User Projects
- Topic: RISC-V Port of ChibiOS
- Replies: 3
- Views: 637
Re: RISC-V Port of ChibiOS
I don't know if you are aware of it, but Gigadevice has the GD32VF103 available. This is interesting for ChibiOS I think, because it is a RISC-V mcu which contains the well-known peripherals from the STM32F103. So a port would "just" need to take care of the processor core, the peripherals...
- Fri Mar 27, 2020 2:21 am
- Forum: STM32 Support
- Topic: board files, tools/ftl reorganized ?
- Replies: 7
- Views: 756
Re: board files, tools/ftl reorganized ?
I had the exact same issue before, see http://www.chibios.com/forum/viewtopic.php?f=38&t=4589#p33624 for a detailed analysis of the problem and a suggestion how to fix it.
- Sun Mar 01, 2020 6:37 pm
- Forum: STM32 Support
- Topic: USB HS on STM32F730Z
- Replies: 6
- Views: 1006
Re: USB HS on STM32F730Z
But wouldn't it be better to just fill in a few other AF positions in the matrix to give you a few more options to move things around instead of requiring the much larger package? I don't know why they did it like that. I guess there are technical reasons. Maybe the HS PHY IP they licensed allows o...
- Mon Feb 24, 2020 9:40 pm
- Forum: STM32 Support
- Topic: USB HS on STM32F730Z
- Replies: 6
- Views: 1006
Re: USB HS on STM32F730Z
(*) The fact that only the physically larger versions have this hints to me that they might be adding an ULPI chip inside the package. On the other hand, this is the "value line", so not a chip where you expect a multi-chip-package. The first thing I look at when trying to figure out such...
- Wed Feb 12, 2020 8:36 pm
- Forum: STM32 Support
- Topic: UART DMA receive in circular mode
- Replies: 3
- Views: 1079
Re: UART DMA receive in circular mode
I concur that the circular buffer implementation won't be easy to implement in a correct way. You would have to suspend DMA operations, do your read/write then resume DMA operations, I am not even sure it is possible to suspend/resume DMA channels. How about using two buffers instead of the circular...
- Sun Nov 03, 2019 4:59 pm
- Forum: Development and Feedback
- Topic: [INFO] Functional Safety Elements
- Replies: 4
- Views: 1006
Re: [INFO] Functional Safety Elements
I'm not working in an industry with specific functional safety requirements, so I'm not that experienced with such requirements and norms. But I still like to improve the reliability of the stuff I build if it doesn't take too long to implement. Here are some more ideas in this area from me: - Flash...
- Sun Jun 02, 2019 9:47 am
- Forum: Development and Feedback
- Topic: [INFO] New Library Generator tool
- Replies: 2
- Views: 579
Re: [INFO] New Library Generator tool
Could you elaborate more what the usecase for a binary distribution of the os is?
Why not compile it with your program? The makefile system of ChibiOS works really well, rebuilding the whole os just takes a few seconds on a recent machine.
Why not compile it with your program? The makefile system of ChibiOS works really well, rebuilding the whole os just takes a few seconds on a recent machine.
- Mon May 20, 2019 7:00 pm
- Forum: STM32 Support
- Topic: Interesting Error on STM32F030K6 with remapped serial
- Replies: 15
- Views: 2269
Re: Interesting Error on STM32F030K6 with remapped serial
Unfortunately the other problem related to __builtin_return_address is still open and unfixed:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88656
So for the time being you still can't use a recent gcc for ChibiOS on Cortex-M0 / Cortex-M0+.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88656
So for the time being you still can't use a recent gcc for ChibiOS on Cortex-M0 / Cortex-M0+.