Tagged Questions

7
votes
5answers
323 views

In Microchip C18, why does the insertion of a NOP cause much larger code?

I have some code in an ISR. The code is given for completeness, the question is only about the commented-out _asm block. Without the _asm block, this is compiled into 82 instructions. With the _asm ...
7
votes
3answers
381 views

Best practice for function to handle 1-256 bytes

I have some functions that are designed to handle 1-256 bytes, running on an embedded C platform where passing a byte is much faster and more compact than passing an int (one instruction versus ...
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?
6
votes
10answers
2k views

Multithreading using C on PIC18

How does one create threads that run in parallel while programming PIC18, since there is no OS?
3
votes
3answers
1k views

Produce tones at certain time-interval using C programming

Im using C language for a PIC18F to produce tones such that each of them plays at certain time-interval. I used PWM to produce a tone. But I don't know how to create the intervals. Here is my ...
2
votes
2answers
785 views

Delay by x microseconds in C for pic18f

I need an accurate time delay function written in C that delays the pic program execution by a given number of microseconds. I did find an example on microchipc.com which uses ASM, but the code only ...
2
votes
2answers
443 views

Netmf SPI master to Pic18f4550 slave synchronization problem (C18)

A .NET Micro Framework device (ChipworkX in this case) sends a byte through the SPI interface to a Pic18f. Having PIE1bits.SSPIE enabled the following code is executed on interrrupt: void high_isr ...
2
votes
1answer
226 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 ...
2
votes
3answers
649 views

USART transmit problems on a PIC

I'm trying to send data to an SD card from a PIC18f4580, but the PIC is not sending what it should be. related global variables: unsigned char TXBuffer[128]; //tx buffer unsigned char TXCurrentPos = ...
1
vote
1answer
229 views

Problem calling in PIC C18, parameters garbled - using pointers to structures perhaps?

I am trying to make a fairly simple call using PICC18. Using the MPLAB simulator I am seeing the arguments, even on entry to the function, being completely garbled. I have the following typedef ...
1
vote
2answers
363 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
28 views

KS0108B using c18

Has anybody got a working library for KS0108B lcd drivers for C18. I am trying to interface a KS0108b driven 128x64 display on the Mikroelktronika Easy PIC v7 board.
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 ...
0
votes
2answers
52 views

USB communication port

I want to send data from PIC18F4550 to an EEPROM. The PIC is located on a development kit I want to send data from my PC to the PIC using (USB PORT COMMUNICATION). * not serial * I'm looking for a ...
0
votes
1answer
154 views

PIC18 Read/Write to data when split across ports

Due to design limitations, I have an address line for a memory controller split across 3 different ports of a PIC 18F4550. Mapping: #define A0 PORTBbits.RB2 #define A1 PORTBbits.RB3 #define A2 ...
0
votes
2answers
354 views

Invensense IMU3000 with microcontroller PIC

Has anybody experienced using the Invensense IMU3000 with some microcontroller? I am trying to build the IMU library for a PIC but I am stuck with the dependencies.. any other experience with others ...