Tagged Questions
0
votes
3answers
116 views
How do you write and read to memory with PIC18?
I want to store a number to PIC18 then retain it even if the power is lost or the unit is reset. I think my writing code portion looks fine, just the reading portion of it looks strange after the unit ...
2
votes
2answers
113 views
Setting up a C project with multiple source files in MPLAB
I'm using the MPLAB IDE and the XC8 compiler for a C project for PIC18 devices. I'm building a project with multiple source files and don't know how to make the structure.
In the project, I have the ...
7
votes
1answer
126 views
What causes a Java library to behave differently when called by JRuby?
I am new to the Java world, but am familiar with Ruby. I am trying to write a program that interacts with some third-party jar files.
While the libraries seem to behave fine if called from Java, ...
-1
votes
1answer
159 views
Odd behavior with switch statement using C30 and MPLAB X
I am experimenting an strange problem with C30 and MPLAB X, I have this piece of code:
unsigned char mode;
switch(mode){ // Eligo el modo que se envio a traves del UART
...
0
votes
0answers
598 views
LCD library - MPLAB X
I'm trying to understand this LCD example on Pic16F887;
http://www.mikroe.com/chapters/view/17/chapter-4-examples/#c4v12
but the compiler keeps showing me errors:
lcdpic16.c:32: warning: function ...
0
votes
1answer
69 views
Where is there a key to microchip mplab source editor syntax color highlighting?
I must be missing something obvious, but, in spite of a lot of internet searching, I cannot find a key to the colours used for syntax highlighting in Microchip MPLAB source code editor. I am sure that ...
2
votes
1answer
111 views
Why ROM String is not being passed correctly?
I am trying to pass a String to a function. I have read a lot about RAM/ROM Strings in C18 and my code seems ok but it is not working. My function is like this:
int setBluetoothName (static const ...
1
vote
0answers
350 views
Microchip MPLABX ADC simulation issue: ADC-W101: Selected channel is configured as digital IO
I'm trying to simulate the following program with MPLAB X simulator, but the ADC seems not working. I have attached a stimulus file with '0303' values to the ADRESL register but I have no read and in ...
0
votes
1answer
618 views
XC8 compiler error “no identifier in declaration”
I recently took over some C and firmware responsibilities at work, and am having trouble with what seems like a basic issue but one that I can't find the answer to. I'm not very experienced with C, ...
1
vote
1answer
517 views
I2C Read/Write Issue with RTCC caused by PIC24HJ256GP610/610A Differences?
I'm having problems with the I2C module on the PIC24HJ256GP610A. My code (see snippet below) runs perfectly fine on the PIC24HJ256GP610 [note: not 610A]. I'm using the I2C bus for communicating with a ...
0
votes
0answers
275 views
MPLAB Pic simulator warning ADC-W0012: Selected channel is an invalid channel
I'm trying to simulate the ADC of a P18F25K22 pic microprocessor, using MPLAB 8.85 and C18 v3.42. I think I've configured the registers properly, but whenever I start the AD conversion, the MPLAB ...
-1
votes
3answers
136 views
Why do I need this line, it is redundant as far as I can see
Below is a section of code that I use for parsing tokens.
There is a line indicated with >>>> near the bottom that is no longer required, but if I comment it out, the ...
1
vote
0answers
264 views
MRF24WB0MA WiFi with 32MX4 Beginners Tutorial
I'm a beginner at Microchip Programming and I want to design a robot that can connect to WiFi. I have the Cerebot 32MX4 Microcontroller (PIC32MX460F512L) and the PmodWiFi card (MRF24WB0MA). I have ...
1
vote
0answers
52 views
Move PmodOLED from JB to JA Header - 32MX4 (MPLAB X IDE)
I am new to programming for microcontrollers and my first task is to accept WiFi connections using the PmodWiFi add-on. I read that the default pin/port for the WiFi chip is the JB header on the ...
0
votes
1answer
611 views
Microchip: How to load more then one HEX file in MPLAB X
I use MPLAB X (sometime MPLAB 8) and i get some project to finish. I have these HEX files:
bootloader.hex
magic_flag.hex
Bootloader is loaded from address 0x0 to 0x7FF. The magic flag has position ...
2
votes
1answer
410 views
Linker error in USB HID Code for Microchip PIC (MPLAB/C18)
I'm trying to compile some code for basic USB HID functionality. I'm using a PIC18F14K50 with MPLAB 8.43 and the Microchip C18 compiler.
I'm using some standard files from Microchip's website. Here ...
0
votes
2answers
298 views
Saving context of stack on dsPIC33 causes: Trap due to unimplemented FLASH memory access
I'm trying to save the context of the registers and store the stack pointer to a C variable from Assembly, it works but it throws many errors and crashes when it gets to the return statement.
Here ...
1
vote
1answer
1k views
Blinking LED on MPLAB not Working ?
am using MPLAB to program my new microchip board and programming it programming it using pickit3
code:
// Include the necessary device header file
#include <p18f8722.h>
#pragma config OSC = ...
0
votes
1answer
2k views
Using Relative Path in MPLAB IDE
My project structure and files are as follows:
project\HAL\hw_lcd.h
project\HAL\hw_lcd.c
project\project\app.c
project\project\workspace.mcp
project\project\workspace.mcw
Where 'project' is a place ...
1
vote
3answers
1k views
How can I make MPLAB import a HEX file with comments or import a HEX file specified on a commandline?
I'm working with the CCS c compiler which produces its object files in the Intel 32 bit HEX format, aka INHX32. This compiler has a directive which causes it to put comments in these files. The ...