2021-02-24 09:52 AM
This compiles with no warnings or errors:
char buf[256];
uint64_t bignum = 0x123456789;
sprintf(buf,"bignum: 0x%016llx, %llu\r\n",bignum,bignum);
HAL_UART_Transmit_DMA(&huart1,(uint8_t *)buf, strlen(buf));
This comes out the terminal:
bignum: 0x000000000000000lx, lu
%I64d does not compile.
Solved! Go to Solution.
2021-02-24 02:13 PM
2021-02-24 12:26 PM
It depends on the libc used.
2021-02-24 12:41 PM
Thanks
How do I change the libc in STM32CubeIDE?
And which one should I use?
Where can I find the documentation?
2021-02-24 01:16 PM
googling STM32 libc does not get me anything.
2021-02-24 02:13 PM
Select this:
2021-02-24 05:36 PM
I got it!
You have to select the project, then File->Properties. To get to that screen.
Thanks, that fixed it.