1
vote
2answers
80 views
Circular buffer pointer irregularities
This is a follow up on this question: Display previously received UART values.
After implementing a circular buffer on the microcontroller, it seems that there is a problem with the pointers.
Sent …
1
vote
4answers
81 views
Display previously received UART values
This should be easy to answer to anyone familiar with C. I want to display the previous values of a variable (receive register of a UART (RS-232) on a microcontroller) on an LCD. This is my current …
5
votes
11answers
855 views
convert ASM to C (not reverse engineer)
I googled and I see a suprising amount of flippant responses basically laughing at the asker for asking such a question.
Microchip provides some source code for free (I don't want to post it here in …
10
votes
3answers
102 views
Macro indicating I/O pins used
I'm writing firmware for a PIC32MX, using HiTech PICC32. One of the problems I want to avoid is that since most of the pins have multiple names (eg. AN0 = RB0 = CN2 = PGED1), I or someone else might …
2
votes
3answers
510 views
Whats the best resource to learn Assembly language for PIC microcontroller’s
I'm going to start working on a project where I need to have a decent understanding of Assembly language for the PIC microcontroller's. I'm intimately familiar with C/C++, so I know how to code for …
7
votes
22answers
333 views
Code that causes physical effects in hardware?
A couple of years ago, I remember reading about an academic project that executed a specific sequence of instructions whose effect was to cause the targeted processor to catastrophically overheat and …
0
votes
2answers
58 views
viewing a structure in MPLAB watch window
I want to view a structure in the MPLAB watch window, but when I select it from the "Add symbol" drop down menu I get, "Unsupported Structure". I was hoping to look for an answer on microchip's …
1
vote
2answers
142 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 …
0
votes
5answers
179 views
How to concatenate vars in c programmed pic?
Hi guys, I programming a 16f84a pic in hitech C to drive a hd44780 lcd. So far I've got the lcd initialized and can write individual characters and strings to the lcd. Now I need to do something like …
0
votes
3answers
218 views
Accessing functions in an ASM file from a c++ program?
Banging my head today ;)
Over here I asked about translating an ASM file to C, and from the responses it looked like there was no reasonable way to do it. Fine. So one of the responses suggested I …
0
votes
2answers
168 views
C18 compiler typedef enum data size
I'm trying to port code over to compile using Microchip's C18 compiler for a PIC microcontroller. The code includes enums with large values assigned (>8-bit). They are not working properly, …
3
votes
9answers
542 views
Keeping time using timer interrupts an embedded microcontroller
Hello,
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 …
5
votes
12answers
1k 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?
4
votes
1answer
643 views
How to call Microchip PIC USB DLL with Delphi 2009
Not a question, just a statement to help anyone else who might spend hours getting the Microchip PIC USB DLL to work properly with Unicode.
It expects several strings, and although these are simple …
1
vote
3answers
388 views
Can I reset Microchip’s TCP/IP stack without reseting the board?
I'm working with Microchip's free TCP/IP (version 4.55) stack on an 8-bit micro-controller.
I'm trying to reset the stack without doing a full board reset with asm("RESET").
Any ideas on how to …
