unicore-mx icon indicating copy to clipboard operation
unicore-mx copied to clipboard

UniCore-MX | Universal Core for ARM Cortex-M0/0+/3/4/7/X

Results 36 unicore-mx issues
Sort by recently updated
recently updated
newest added

moved some simple code from body to headers inlines

on stm32 premature completed URBs (finished by short packet or else) are followed by standalone OUT_COMP received packet, that rise RXC IRQ. this RCX will captured by next active URB,...

provided load/store ep fifo with unaligned transfer membuffer. now memory buffer of transfer can be unaligned with negligible price. ! :last bytes store - fixed loose of last loaded from...

some USBD register fields was broken or miss. also fifo flush routine now more strict prepares for flushing

lib/stm32/f7/Makefile ``` -OBJS += pwr.o pwr_common_all.o +OBJS += pwr.o pwr_common_all.o spi_common_all.o ```

- support for sending resume event to host - support for power down - test mode for USB (J Mode, K Mode, SE0 NAK, PACKET_MODE) - Pass SOF number to...

uc-def generates scripts with extra-newline in comments. this patch remove this, to get better readable comments.

fixed code vs inconsisting with standart C on Keil ARM compiler, that cause warnings pointer type mis-mutch, packed vs unpacked pointer type mis-mutch, !no binary const - C standart not...

on windows file.tell() ,i guess, makes 1byte ovehead on each line. therefore reposition to line begin is broken. now read whole file and split to lines at once. it is...

``` usart.c: In function 'usart_is_recv_ready': usart.c:107:10: warning: implicit declaration of function 'USART_SR' [-Wimplicit-function-declaration] return (USART_SR(usart) & USART_SR_RXNE); ``` (stm32f3) Compiler assume USART_SR as function and will cause link error for...