I have a problem only on Rx (bar code reader and RF resivier).
At TX we have only RF transmitter
Thanks
I have a problem only on Rx (bar code reader and RF resivier).
At TX we have only RF transmitter
Thanks
The first function takes a pointer - so you already got the address of the buffer where you are expected to store the answer.
The second function takes an int - that is a local copy so you may take the address of this local variable Arg but can't return…
For reference, please take a look at this older question of mine:
https://community.arm.com/developer/tools-software/tools/f/keil-forum/41992/spurious-link-from-isr-to-pr-main
Previously, function pointers that were placed in a global table made the linker…
Hi ,
I'm trying to print something via "ITM_SendChar();" in the Debug (printf) Viewer of Keil. But it seems no work for me.
Environment: KEIL v5.17 + STM32L475VE + ST-LINK V2-1
Trace settings:

Code in main.c:
void main(void)
{
//SYSCLK…Hi
I have developed a Secondary Boot Loader on LPC1788. I am using Emwin Graphical library. my main application shows dialog boxes on LCD and everything is working fine. My LCD is 7" Hantronix LCD
I wanted to shown a progress bar on to LCD in…
Arm Compiler for Linux 22.0 is now available with improved compilers and libraries. Arm Compiler for Linux (ACfL) is a combination of Arm C/C++ Compiler (armclang), Arm Fortran Compiler (armflang), and Arm Performance Libraries (ArmPL). In this blog,…
Sorry, but I couldn't find the driver.
But I did have a kit with 27 viruses I did send. It is quite creative, with permutating, self-modifying code, so it just might support transposing itself for use as a driver. I'm not sure if your virus scanner…
Hello,
I try to use ULINK2 /ULINK ME to write my code into the internal
flash of the controller.
In a second step I want to debug the code using ULINK2 oder ULINK
ME
I use the ULINK2 in other projects and it works as expected.
In the "Cortex-M Target…
Hello levi,
if the retval of the volatile function was incorrect, it would might be a bug of the compiler.
The difference between
retval = SomeFunction();
and
retval = (volatile int)SomeFunction();
is whether the function must be executed for every call…
Hello everyone,
I have been using MDK-ARM with STM32F7 with ARMCC5 for a while
now.
I have switched to ARM Compiler version 6.6 (MDK 5.24) and 6.9 (MDK
5.25) and modified the source code to compile with LLVM/Clang.
I have observed a problem with…