Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
164 views

Compiler warnings with SDCC

Using SDCC 3.0.0. Compiling this code #include < pic16f84.h> void main(void) { TRISA0=0; RA0=1; } and receive these warnings. daedalus@Eurydice:~/Projects/PIC$ sdcc -I ...
2
votes
4answers
349 views

How do you control what your C compiler Optimizes?

I am writing the firmware for an embedded device in C using the Silicon Labs IDE and the SDCC compiler. The device architecture is based on the 8051 family. The function in question is shown below. ...
2
votes
4answers
821 views

Do all C compilers allow functions to return structures?

I am working on a program in C and using the SDCC compiler for a 8051 architecture device. I am trying to write a function called GetName that will read 8 characters from Flash Memory and return the ...
2
votes
2answers
213 views

uploading a compiled program to a C51 microcontroller

I'm trying to upload a compiled program to a microcontroller.. well my problem is not in programming or uploading things.. my problem is what to upload u.u The program is in C and was compiled with ...
1
vote
1answer
53 views

Is it possible to know PCL‘s value before an interrupt is caught in PIC16/18?

I want to know what was the last instruction being executed in the program line just before an interrupt has been caught. It seems that reading the microcontroller stack is not possible.
1
vote
1answer
236 views

Problems interfacing an hd44780-based LCD with a P89LPC9351-based microcontroller

I can't manage to get my LCD to initialize, am i doing something wrong? Any help appreciated! #include <stdio.h> #include <stdlib.h> #include <p89lpc9351.h> #define ...
1
vote
1answer
474 views

Problems combining SDCC and ASM code compiling on the Intel 8051

We are trying to compile our C code which includes a lot of assembly for various operations (timing, producing output waveforms, and measuring input frequency). We keep getting the same error for a ...
1
vote
1answer
798 views

How do I use the Silicon Laboratories IDE with SDCC?

I'm thinking about using a microcontroller with an 8051 core from Silicon Laboratories. I hope that I can use C rather than assembly language, so I installed SDCC. I installed the "Silicon ...
1
vote
1answer
385 views

Problem using SDCC in a Makefile during the link step

The Small Device C Compiler (SDCC) will produce a ihx (Intel Hex) file even if there are undefined reference errors during the link step. This behavior causes problems when using SDCC in a Makefile ...
1
vote
4answers
1k views

Ways to divide the high/low byte from a 16bit address?

I'm developing a software on 8051 processor. A frequent job is to divide the high and low byte of a 16bit address. I want to see there are how many ways to achieve it. The ways I come up so far are: ...
1
vote
2answers
507 views

Code Banking with SDCC

I need to use code banking in an 8051 microcontroller to fit all the code. SDCC says it supports it, but I'm having trouble at the linking step. I have a test project with 3 files: main.c, func1.c, ...
0
votes
2answers
86 views

How do I get an hex file generated by SDCC to be simulated in Pic Simulator IDE?

I have been searching workarounds for many days with no luck. PIC Simulator keeps telling me that the checksum of the hex file is wrong. I already tried changing SDCC‘s hex file output format many ...
0
votes
1answer
220 views

Eclipse with SDCC plug in - always has an error of java.lang.NullPointerException

I had installed latest Eclipse IDE with C/C++, installed SDCC and put the net.souurceforge.eclipsesdcc.1.0.0 plugin into the Eclipse Plugins & Features folder. When startup Eclipse, start to ...
0
votes
2answers
108 views

How to better read a value from an address that points to an address

I am wondering if there is a better way to write this: void readtcp_c(unsigned char c) { volatile char *a; volatile int *p; volatile int *q; a = (char *)APPLE_REG_A; // a = ...
0
votes
3answers
393 views

Why does using a structure in C program cause Link error

I am writing a C program for a 8051 architecture chip and the SDCC compiler. I have a structure called FilterStructure; my code looks like this... #define NAME_SIZE 8 typedef struct { char ...
0
votes
3answers
436 views

What is wrong with this arithmetic when using SDCC (Little Endian) Compiler?

I am very new at C programming and I am working on a firmware application for my MCU. This method was working fine when I was using the KEIL compiler (Big Endian) but when I switched to the SDCC ...