Tagged Questions

7
votes
5answers
325 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 ...
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?
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
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: ...
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
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
57 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
220 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
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
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
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
487 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 ...