• Graphic routines, Graphic LCD
    I am working on a project with a 320x240 pixel LCD connected to a 8051 with an Epson 1335 controller.... has anyone come across graphics routines that would allow "line" "lineto" drawing routines to a...
  • Struct problems
    First off, I am fairly new to chip level programming! I am using a SILabs C8051F330 and I am having trouble in the compilation of some libraries that I need to use that were given by Texas Instruments...
  • union/struct problem
    Hello, it works in devcpp (as c project) but not working in Keil. What is my fault. output must be "12345" but it is not. typedef union { u8 Reg8[5]; struct { u8 Select; u32 Value32; ...
  • struct problem / usart
    I'm working with the RealView Compiler and have a strange problem with the usart. I've installed one typedef struct in a headerfile - when I try to install a array of this struct in the c-file (as...
  • Array of struct within struct
    Has anyone defined an array of struct inside another struct with C51? I can find no reference document prohibiting it. Yet, when I try to compile following fragment: #include <stdio.h> struct...