zejiang0jason

Results 15 comments of zejiang0jason

Hi @JonatanAntoni , I got the similar error while including the "arm_math.h" in *.cpp file, the gcc error is: ``` const __cmsis_start()::__copy_table_t __copy_table_start__', declared using local type 'const __cmsis_start()::__copy_table_t', is...

Hi @JonatanAntoni , Thank you very much for analyze, is there plan for this error? Or some suggestions? thanks.

OK, thanks, I will try the llvm.org repo.

Hi @DRNadler , > Firstly, you are confusing "CS must be asserted across an SPI transfer operation" and "CS left asserted between SPI transfer operations". This is aggravated by poor...

Hi @DavidJurajdaNXP , UART drivers use such way to use const tx data, https://github.com/nxp-mcuxpresso/mcux-sdk/blob/main/drivers/lpuart/fsl_lpuart.h#L276 do you think the the FreeRTOS drivers https://github.com/nxp-mcuxpresso/mcux-sdk/issues/59 can be updated for this purpose? thanks.

The txData in SPI drivers, such as: https://github.com/nxp-mcuxpresso/mcux-sdk/blob/main/drivers/lpspi/fsl_lpspi.h#L345, will be udpated to const type.

Will update not only the data sending functions, but also the functions which don't modify parameter content, such as `SetConfig`, the parameter `config` shall be const. These changes will be...

Hi @zionst , Thanks for reporting this. This project's binary can't be loaded and run by uboot. The right way is load M core binary using debugger. The project readme...

Hi @ngphibang , in this case, the LCDIF occupies one buffer, and CSI occupies one, so two buffers is the minimal requirement. CSI and LCDIF frame rate are not the...

This project must use more than 2 buffers. Because CSI and LCDIF are both free-running controllers, each of them always reserve one buffer. Another buffer is used because the CSI...