Hi,
Fixed in repository.
Giovanni
Search found 14405 matches
- Sat Dec 02, 2023 5:23 pm
- Forum: Bug Reports
- Topic: rccDisableAPB2 called with incorrect parameters count in stm32_rcc.h of STM32F4xx Topic is solved
- Replies: 2
- Views: 96
- Fri Nov 24, 2023 6:37 am
- Forum: General Support
- Topic: Differences in scheduling in POSIX Simulator
- Replies: 1
- Views: 251
Re: Differences in scheduling in POSIX Simulator
Hi,
The only difference regarding scheduling is preemption. You need to manually insert a call to the simulator port in points where you want to check for preemption (looking for pending interrupts basically).
Giovanni
The only difference regarding scheduling is preemption. You need to manually insert a call to the simulator port in points where you want to check for preemption (looking for pending interrupts basically).
Code: Select all
#if defined(SIMULATOR)
_sim_check_for_interrupts();
#endif
Giovanni
- Wed Nov 08, 2023 9:43 am
- Forum: Bug Reports
- Topic: copy paste typo in SPIV3 (H7) driver. Topic is solved
- Replies: 3
- Views: 536
Re: copy paste typo in SPIV3 (H7) driver. Topic is solved
Hi,
Fixed in trunk.
Any reason for using v1?
Giovanni
Fixed in trunk.
Any reason for using v1?
Giovanni
- Wed Nov 08, 2023 9:36 am
- Forum: Bug Reports
- Topic: Support for STM32G0B1 Topic is solved
- Replies: 43
- Views: 9601
Re: Support for STM32G0B1 Topic is solved
Hi,
Fixed in repository trunk.
Giovanni
Fixed in repository trunk.
Giovanni
- Tue Nov 07, 2023 9:50 am
- Forum: Bug Reports
- Topic: Support for STM32G0B1 Topic is solved
- Replies: 43
- Views: 9601
Re: Support for STM32G0B1 Topic is solved
Hi,
Could you post your halconf.h, mcuconf.h files causing compilation errors?
Giovanni
Could you post your halconf.h, mcuconf.h files causing compilation errors?
Giovanni
- Mon Nov 06, 2023 3:41 pm
- Forum: Bug Reports
- Topic: Support for STM32G0B1 Topic is solved
- Replies: 43
- Views: 9601
Re: Support for STM32G0B1 Topic is solved
Hi,
Any news?
Giovanni
Any news?
Giovanni
- Mon Nov 06, 2023 10:07 am
- Forum: Bug Reports
- Topic: STM32L5 hard FPU support compile error
- Replies: 2
- Views: 180
Re: STM32L5 hard FPU support compile error
Hi,
It is a bug, the M33 port is not yet fully validated, will look into this as soon as possible, apparently part of the FPU-related code is not yet there for v8-M architecture.
Giovanni
It is a bug, the M33 port is not yet fully validated, will look into this as soon as possible, apparently part of the FPU-related code is not yet there for v8-M architecture.
Giovanni
- Sun Oct 29, 2023 6:30 pm
- Forum: Small Change Requests
- Topic: Extend MAC HAL API by macClearInterrupts() Topic is solved
- Replies: 4
- Views: 676
Re: Extend MAC HAL API by macClearInterrupts() Topic is solved
Note that multiple writes into a descriptor still result in a single frame sent, the limit is the maximum frame site.
Writes are just a way to "assemble" frame composed of multiple parts.
Giovanni
Writes are just a way to "assemble" frame composed of multiple parts.
Giovanni
- Sat Oct 28, 2023 6:22 pm
- Forum: Small Change Requests
- Topic: Extend MAC HAL API by macClearInterrupts() Topic is solved
- Replies: 4
- Views: 676
Re: Extend MAC HAL API by macClearInterrupts() Topic is solved
Hi, Exposing workarounds and interrupt-related code at HAL API level is against "rules", drivers are meant to hide inner details to the user code. You should try to hide interrupt clearing within the driver, there are SPI functions that can be called from withing ISRs, see spiStartSendI() ...
- Thu Oct 26, 2023 2:21 pm
- Forum: ChibiOS/RT
- Topic: Debugging Issue with STM32 NUCLEO-G0B1RE and OpenOCD 0.12.0
- Replies: 2
- Views: 1081
Re: Debugging Issue with STM32 NUCLEO-G0B1RE and OpenOCD 0.12.0
Hi,
Compiler optimizations, when debugging use -O0 instead of -O2 in the makefile.
Giovanni
Compiler optimizations, when debugging use -O0 instead of -O2 in the makefile.
Giovanni