• Initializing a struct
    Hi, I am trying to initialize a struct, but I get the following error: Error #29: Expected an expression typedef struct { atp V1; atp V2; atp V3; atp V4; } tosh_at; tosh_at tosh_options...
  • Partial Linking in ARM linker
    Hello, Can anyone explain what is partial linking and how it works? How it is different from other type of linking methods in ARM? Thanks in advance.
  • Possible problem in START_V2.A66 chip select initialization
    The chip select initialization code in START_V2.A66 enables the chip selects before the ADDRSEL registers are programmed. I was single stepping using OCDS and noticed the disassembly changed when CS1...
  • Array initialization inside struct
    Hello, I try compile this code (.c) with --c99 option struct sx { char c; char a[]; }; static struct sx xx = { 1, {[5] = 0} }; and have error error: #146: too many initializer values How...
  • Initializing array of structs
    Hello, I have an array of structs, which I would like to initialize at startup, but to my surprise this gives me a compiler syntax error: I do as follows: typedef volatile struct Timer {...