• func and func()
    Hi All, let a function prototype is : bit func(); Now if it is used as follows (inadvertently) then what would it do ?? Why not the complier throws an error ?? if (func) { ... ... } else...
  • cpp - error: #29: expected an expression
    Hello, I am quite new to C/C++ and Keil. I am using the following: nrf52832_xxaa (Cortex M4) Keil uVision 5.24.2.0 I have some existing C++ code which I had used on another project and am looking...
  • How to solve "expected an expression" error?
    Hello, I'm new to ARM and Keil tools. I'm using Keil uVision V4.71.2.0. Compiler is Armcc.Exe. Compiler version is v5.03.0.69. I'm working on large code base. When I try to build code, I get the...
  • compile two assembly func
    Hi all, I am stuck up with an issue in Keil uvision 3 I am trying to create a project with combination of C source and assembly source files. I am trying to write all the basic functions like...
  • problem with FUNC
    I always get an error 129 (missing ';' before 'void') when I compile in this part: func void iicstart (void) { sda = 1; scl = 1; del4us () sda = 0; del4us () scl = 0; del4us () } what...