Search found 87 matches
- Thu Feb 11, 2021 1:39 pm
- Forum: Bug Reports
- Topic: MCU variant missing in stm32_registry header Topic is solved
- Replies: 1
- Views: 76
MCU variant missing in stm32_registry header Topic is solved
Seems that STM32F765xx is missing in os\hal\ports\STM32\STM32F7xx\stm32_registry.h
- Tue Dec 29, 2020 8:53 pm
- Forum: Bug Reports
- Topic: CMSIS wrappers outdated Topic is solved
- Replies: 5
- Views: 320
Re: CMSIS wrappers outdated Topic is solved
Confirmed! Thanks
- Tue Dec 29, 2020 4:23 pm
- Forum: Bug Reports
- Topic: CMSIS wrappers outdated Topic is solved
- Replies: 5
- Views: 320
Re: CMSIS wrappers outdated Topic is solved
Guess, that's because of the #define CH_CFG_USE_MUTEXES
- Tue Dec 29, 2020 1:30 pm
- Forum: Bug Reports
- Topic: CMSIS wrappers outdated Topic is solved
- Replies: 5
- Views: 320
Re: CMSIS wrappers outdated Topic is solved
Almost fixed...
os/common/abstractions/cmsis_os/cmsis_os.c:162:5: error: 'thread_t' {aka 'struct ch_thread'} has no member named 'prio'
162 | tp->prio = (tprio_t)newprio;
os/common/abstractions/cmsis_os/cmsis_os.c:162:5: error: 'thread_t' {aka 'struct ch_thread'} has no member named 'prio'
162 | tp->prio = (tprio_t)newprio;
- Mon Dec 28, 2020 10:43 am
- Forum: Bug Reports
- Topic: CMSIS wrappers outdated Topic is solved
- Replies: 5
- Views: 320
CMSIS wrappers outdated Topic is solved
Hi,
After the changes introduced with the fix for bug #1138, the CMSIS wrappers are outdated.
Build fails because of prio elements changes and queue_dequeue.
After the changes introduced with the fix for bug #1138, the CMSIS wrappers are outdated.
Build fails because of prio elements changes and queue_dequeue.
- Mon May 25, 2020 12:49 pm
- Forum: Bug Reports
- Topic: I2C4 in ST_STM32F769I_DISCOVERY Topic is solved
- Replies: 9
- Views: 2046
Re: I2C4 in ST_STM32F769I_DISCOVERY Topic is solved
Nope. Keeping throwing a hard fault...
- Fri May 01, 2020 3:24 pm
- Forum: Bug Reports
- Topic: Unused var in chSemResetI Topic is solved
- Replies: 1
- Views: 2194
Unused var in chSemResetI Topic is solved
Hi,
The fix for bug #1093 in 19.x left in chSemResetI() an unused var: cnt.
That's breaking the build when using -Werror=unused-variable...
The fix for bug #1093 in 19.x left in chSemResetI() an unused var: cnt.
That's breaking the build when using -Werror=unused-variable...
- Thu Apr 23, 2020 10:01 am
- Forum: Bug Reports
- Topic: I2C4 in ST_STM32F769I_DISCOVERY Topic is solved
- Replies: 9
- Views: 2046
Re: I2C4 in ST_STM32F769I_DISCOVERY Topic is solved
Thanks for looking into this.
I'm already using the latest on 19.1.x...
A question that may be stupid, but just to be sure: your test was with I2C4, correct?
Thanks!
I'm already using the latest on 19.1.x...
A question that may be stupid, but just to be sure: your test was with I2C4, correct?
Thanks!
- Wed Apr 22, 2020 3:18 pm
- Forum: Bug Reports
- Topic: I2C4 in ST_STM32F769I_DISCOVERY Topic is solved
- Replies: 9
- Views: 2046
Re: I2C4 in ST_STM32F769I_DISCOVERY Topic is solved
Giovanni, I've just compiled with -O0 as suggested. The hard fault is still there, but I couldn't see any indication on what could be causing it... I do have a fault handler but I couldn't find anything from the output. In the mean time I've stumbled on this: http://www.chibios.com/forum/viewtopic.p...
- Wed Apr 15, 2020 8:13 am
- Forum: Bug Reports
- Topic: I2C4 in ST_STM32F769I_DISCOVERY Topic is solved
- Replies: 9
- Views: 2046
I2C4 in ST_STM32F769I_DISCOVERY Topic is solved
Hello, Was trying to use I2C4 on this Discovery board to enable the touch screen controller. It's throwing a hard fault when calling line 835 @ os\hal\ports\STM32\LLD\I2Cv2\hal_i2c_lld.c dmaStreamSetPeripheral(i2cp->dmatx, &dp->TXDR); I've tried to tweak the DMA assignments without success. If i...