• RE: 2input serial port with 8051

    I have a problem only on Rx (bar code reader and RF resivier).
    At TX we have only RF transmitter

    Thanks

  • RE: Can I take the address of a function argument?

    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…

  • Declaring local variable causes L15 warnings, but only on optimization level 9

    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…

  • Why Debug (printf) viewer has no output in Keil?

    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…

  • Emwin Memory usage

    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: what is new in the 22.0 release?

    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,…

  • RE: ENC28J60 driver

    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…

  • Flashing LPC4074 with ULINK

    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…

  • RE: volatile int typecast return value. Could this make problem?

    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…

  • Keil MDK-ARM 5.24/5.25 Source Browser problem with ARMC6

    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…