Tagged Questions
The pic18 tag has no wiki summary.
7
votes
5answers
327 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
382 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?
5
votes
3answers
1k views
PIC Assembly function calling
I'm writing a pretty basic program in PIC18 assembly. It requires that I write a subroutine to multiply two 16-bit numbers... This is what I have right now:
...
4
votes
2answers
283 views
One Wire Problem
I need your qualified help!
I'm programing in C++, using a PIC 18F87J50 and trying to connect DS18B20 at my H0 Port!
I think my underlying programing is correct so.... the problem I have (think I ...
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 ...
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
1answer
63 views
from PIC18f4550 to serial in parallel out latch
I searched alot about how to send data from PIC18f4550 to 8-bit serial-in, serial or parallel
74HC595 latch.
I need a code example to understand how the operation can be performed.
Any help is ...
2
votes
1answer
149 views
Put the data from a .wav file into the flash memory of pic18F4550
I'm new at hardware programming: I work with the pic18F4550 with the C compiler from microchip version 8.63. My question is: has someone example code to write a .wav file (binary data) to the flash ...
2
votes
2answers
796 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
446 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
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 ...
2
votes
3answers
653 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 = ...
2
votes
4answers
7k views
Difference between PORT and LATCH on PIC 18F
I already read the datasheet and google but I still don't understand something.
In my case, I set PIN RC6 of a PIC18F26K20 in INPUT mode:
TRISCbits.TRISC6 = 1;
Then I read the value with PORT ...
1
vote
1answer
58 views
How to set up prescaler on ISR to a certain interval in microseconds?
I have a PIC18F87J11 device and I'm supposed to create:
1) a high-priority ISR that's supposed to be triggered every 100ms
2) a low-priority ISR that's supposed to be triggered every 10ms
I have a ...
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
1answer
143 views
how to do interrupt service routine in pic18
#include<p18f452.inc>
TIMER set 0x00
COUNT1 set 0x01
COUNT2 set 0x02
org 0x00
goto start
org 0x08
goto int_1
goto int_2
org 0x18
retfie
start movlw 0xFF
movwf ...
1
vote
2answers
221 views
How to place variables in the access bank - PIC 18 MPASM linker script
I have a linker script which starts
INCLUDE 18f14K50_g.lkr
I want my interrupt service variables to go into the ACCESS bank. (My program's so small at the moment the whole lot can, but maybe in ...
1
vote
1answer
193 views
What is a normal interrupt latency and context saving time on Microchip C18?
I am using the Microchip C18 compiler and on occurrence of an interrupt I am experiencing a quite long delay before the ISR code starts running.
As an experiment, this is in my main function:
...
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 ...
1
vote
1answer
483 views
PIC18F4550 customize USB VID and PID
I'm new to PIC programming, and I'm ready to make a USB program so that I can send it motor control commands from my program on a (Windows XP) PC.
How do I set the VID and PID for PIC18F4550? I read ...
1
vote
3answers
227 views
How are divisions handled in the PIC18 ISA
Kind of an extension of http://stackoverflow.com/questions/3694100/converting-to-ascii-in-c , I was wondering exactly how divisions are handled on a PIC18X.
If I perform a DIV operation, how many ...
1
vote
5answers
589 views
Delay in MCC18, 48Mhz, 18F87J50
How should i write a delay macro for an PIC 18f87J50 with a 48MHz crystal
and compiler of MCC18. The delay should be in us. So I for example can write: Delay_us(201)
and really get 201us delay.
What ...
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
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
53 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
158 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
1answer
223 views
How to receive IR signal in PIC18F
I need to receive signal from IR transmitter LED. I am not sure how to program the microcontroler. I am looking for some concept, how to do that. Whether I have to use A/D conversion? How to ...
0
votes
1answer
240 views
PIC18f45k22 serial framing error with 64Mhz clock
I'm trying to transmit serial over the pic18f45k22 eusart peripheral. The messages get sent exactly as expected when the clock is running at 16Mhz, but if I set the PLL to on (so that the the ...
0
votes
2answers
356 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 ...
0
votes
1answer
474 views
pic18f communicating with lcd module
I'm developing on a pic 18Fxxx (18F452) in assembly. I'm in a learning phase so I'm doing different simple exercise with the final goal to develop a "real" project.
At the moment I'm stuck with the ...
0
votes
0answers
62 views
Is my assembly sequence allowed?
I'm starting to program PIC18 in assembly and I wanted to know if my sequence works.
The next code shows a subroutine that will turn on and off each LED of PORTB progressively, from left to right ...
0
votes
1answer
490 views
Pic to PIc and PC USB how to?
I want to make an application where PIC18F4550 send its internal eeprom data to the pc through usb. Also i want to use the same usb connector to download the data to another PIC18F4550 over usb.
How ...
0
votes
2answers
348 views
1wire problem in detail
I have defined these functions below, and when I ask Device_ID function for example of
the family code, I only get FF (should be 28), acctually I get both the family code, 48-bit serial, and the crc 8 ...
-1
votes
0answers
43 views
PIC18FXX2 MICROCONTROLLER assembly programming [closed]
Hi I have a project based on PIC18F4550 microcontroller
Write a program that read an input from RB0 :
if RB0 = 0 then clear RC1 ( RC1 is an output RC1=0) .
else if RB0= 1 then set RC1 ( RC1 is ...