Tagged Questions

7
votes
14answers
3k views

What is the best c complier for the Pic18 micro

We are starting a new project based a microchip PIC18F252. What is the best 'c' compiler to use?
3
votes
1answer
204 views

Assembly instruction to machine code

I'm trying to convert MOVFF 0x10, 0x15 to machine code. The Microcontroller is Microchip PIC 18F1220. The reference manual says: MOVFF fs,fd Encoding: 1st word: 1100 ffff ffff ffffs 2nd word: 1111 ...
3
votes
1answer
1k views

Create big buffer on a pic18f with microchip c18 compiler

Using Microchip C18 compiler with a pic18f, I want to create a "big" buffer of 3000 bytes in the program data space. If i put this in the main() (on stack): char tab[127]; I have this error: ...
3
votes
10answers
2k views

Keeping time using timer interrupts an embedded microcontroller

This question is about programming small microcontrollers without an OS. In particular, I'm interested in PICs at the moment, but the question is general. I've seen several times the following ...
2
votes
1answer
227 views

Why doesn't this compile in C18?

I'm trying to compile the following code using the MPLAB C18 v3.36 compiler. Compiler returns a syntax error on 'char rij;'. But when i put char rij; a line earlier (before TRISA = ...), it compiles ...
1
vote
2answers
364 views

pic 18F4550: local variable problem,

I'm using the pic18F4550 with microchip v8.63 and with the C 18 compiler. I'm using a LDR that retrieve the value of the led (not on my picdem board) (red, green and blue) these values are stored in a ...
0
votes
0answers
14 views

Microchip C18 - Weird code behavior (maybe extended-mode / non-extended-mode related)

I have this weird problem with the Microchip C18 compiler for PIC18F67J60. I have created a very simple function that should return the index of a Sub-String in a larger String. I don't know whats ...
0
votes
2answers
53 views

Assembler to C conversion INCF and CPFSLT

Does these's two codes mean the same? Assambler -> _asm INCF PR4,0,ACCESS CPFSLT TMR4,ACCESS _endasm C -> ++PR4; if (PR4 < TMR4) PIR3bits.TMR4IF = 1; If not, how should the ...