Tagged Questions

Questions related to the microchip PIC family of microcontrollers. Where possible please specify the specific microcontroller.

learn more… | top users | synonyms

10
votes
3answers
185 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 ...
9
votes
12answers
12k 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 ...
7
votes
2answers
344 views

Which interpreted language can work on on microchip PIC32?

I'm looking for an interpreted language that work on microchip PIC32. Currently, I found that LUA and PAWN are working but before choosing I would like to know if some other languages are known to ...
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?
5
votes
2answers
103 views

extracting secrets from an embedded chip

I am looking at an embedded system where secrets are stored in flash that is internal to the chip package, and there is no physical interface to get that information out - all access to this flash is ...
4
votes
4answers
105 views

How to make a !default case in C

On a micro-controller program I have a few instructions that I would like to execute for every case in a switch except the default. I do not, however, want to write a function call or use a macro for ...
4
votes
1answer
64 views

Do I have to disable interrupts while in one?

Do I have to disable high interrupts while inside one, if I am using multiple interrupts on the Microchip C18? Consider the code below: #ifndef OTHER_INTERRUPT_H #pragma interrupt InterruptHook // ...
4
votes
2answers
72 views

How does TickGetDiv256() works?

Hi I wonder if anyone could give me an example how the TickGetDiv256(); function works. It came from Microchip in Tick.c Im trying to count for 2 houre's, if fullfilled an engine will be stopped. I ...
4
votes
4answers
760 views

PIC 16F684 Microcontroller Interupt Handling

I just finished up my Microprocessors class in college just a few weeks ago, there we programmed in assembly only. We learned a fair amount (IMHO) about interrupts. Here is my question: I am ...
4
votes
5answers
5k views

Whats the best resource to learn Assembly language for PIC microcontroller's [closed]

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 ...
4
votes
1answer
2k 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 ...
3
votes
1answer
200 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
3answers
515 views

C++ running on PIC32 (MIPS32)

Unfortunately, my C app for PIC32 needs OO too much and I can't continue doing it in C. Do you know any MIPS32 C++ compiler for PIC32? Thanks
3
votes
0answers
390 views

pic32 projects in visual studio 2010

Has anyone managed to configure VS2010 to build and debug embedded projects on PIC32 microcontrollers? Are there any tutorials out there? Using WinGDB i can connect to a gdb server to step through ...
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
3answers
5k views

Modbus stack for Microchip PIC

Can someone suggest an open source implementation of a Modbus RTU Slave for a Microchip PIC18 processor? I'm looking for an implementation of Modbus RTU for RS-232/RS-485, but a Modbus TCP/IP ...
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 ...
2
votes
2answers
35 views

Remake of Fletcher checksum from 32bit to 8

Is this conversion right from the original? uint8_t fletcher8( uint8_t *data, uint8_t len ) { uint8_t sum1 = 0xff, sum2 = 0xff; while (len) { unsigned tlen = len > 360 ? 360 : ...
2
votes
1answer
159 views

Problems sending commands to USB programmer

I'm writing a program in VB.NET 2010 that will connect to the PICkit(TM) 1 FLASH Starter Kit's USB programmer and send it commands to turn on or off something connected to the attached eLab16m board, ...
2
votes
2answers
129 views

Printf ignoring null values?

I am writing C code for an embedded target, Microchip PIC24, and the runtime libc for some reason won't properly send \0 values over the serial port. printf("\xEE\xEE\0test"); for example sends EE ...
2
votes
1answer
133 views

C: simple code not working as expected (PIC micro)

This line isn't working as expected: uartPushPos = (uartPushPos + 1) % UART_TX_BUFF_LENGTH; However this below, which in theory does the same, does work: //if (uartPushPos == UART_TX_BUFF_LENGTH - ...
2
votes
1answer
329 views

Command line serial terminal

I'm using Eclipse to develop application for embedded systems. One of the options of Eclipse configurations are "Program to run after programming/building" Usually, on that textbox it's the path to ...
2
votes
1answer
93 views

.inc File Not Included Reliably

I am working on some HTML code that was inherited from another programmer, which uses include statements of the form: ~inc:filename.inc~ However, the problem I am encountering is that this include ...
2
votes
1answer
115 views

Enable data memory PIC 18F4550

I'm using the PIC18F4550 from microchip with the c compiler: by default the 'program memory' is used, but now I want to use the 'data memory' because it gives me a big more functionality, can enyone ...
2
votes
1answer
133 views

which value can I aspect from PORTBbits.RB7 from pic 18f4550

Which value can I expect from PORTBbits.RB7, on this port there is a green led with a resistor connected (see picture). I'm using pic F184550 with mplab ide v8.63 and a C compiler C18 from mplab ...
2
votes
1answer
1k views

Receiving SPI data via DMA on PIC32

I know that this topic (DMA & SPI) has already been talked about on numerous threads in the microchip forum, actually i've read all the 15 pages in result of the search with keyword "dma" and read ...
2
votes
1answer
408 views

PIC 16f627 using a pin for both input and output

I'm trying to connect two PIC 16f627 chips together (programmed with PICC-Lite) with one I/O pin (RA2, which changes direction at known points) and a CLK pin which is driven by one of the chips. I ...
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
4answers
148 views

Implementing security on the chip level

With Intel's recent purchase of a well known security company, I'm starting to think about what software w/could be more secure on a chip level. Examples I've come up with are: Random number ...
2
votes
4answers
556 views

Microchip PIC C18 Programming File Format .COFF vs .HEX

I am developing code in the MPLAB IDE and I was wondering if it is better to program a chip using the .COFF or .HEX file generated by the compiler. I'm not sure what the difference is between the two ...
2
votes
3answers
253 views

Communicating with the Pic 16F913

Here is my issue, it appears that all the communication lines for the PIC 16F913 reside on the same set of pins, this is convenient in that I don't have to sacrifice GPIO pins just to do comms, ...
2
votes
2answers
849 views

PIC 18 controller as serial to ethernet bridge

I am planning to use PIC18F6*** serial microntroller for my project serial-ethernet converter. Once I will put my hex code in PIC micro-controller for send recieve serial port data I will use the ...
2
votes
8answers
2k views

Microchip Linker problem

when i was trying to build my project in MPLAB,i got this Build error message.. Clean: Deleting intermediary and output files. Clean: Deleted file "M:\12 CCP PWM\12 CCP PWM.o". Clean: Done. ...
1
vote
5answers
83 views

why choose one's complement when writing to a register

What are the benefits of, for example writing the first statement vs second statement: First statement: ANCON1 = ~0x0C; Second statement: ANCON1 = 0xF3; I'm seeing the second as a clear choice ...
1
vote
1answer
84 views

Defining a function (high interrupt) within or outside a macro C

For starter, Im using the C18 compiler for my PIC. When I create the function like high_ISR without any calls in it, my compiler adds code to it, code I can only see in a Disassembly listing view. ...
1
vote
1answer
60 views

set interrupt flag

Can a interrupt flag be set by the code as in the example below or is that line just an error of thinking? This is just the main function. Below this code snipet are the interrupt it self, is it ...
1
vote
1answer
153 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 = ...
1
vote
1answer
123 views

Programming bootloader of a PIC microcontroller

I got a old used picdem board for free from my friend and I have a bootloader to it. It's old one got erased. I don't have ICD to program the bootloader, is there any way I can program the bootloader ...
1
vote
2answers
154 views

microchip exception handling

While running my program on a microchip ICD3 device,the exception handling looks weird. The program will stop response while exception occurs. While checking the code, I noticed that the ...
1
vote
2answers
266 views

Create a FILE in C

I'm using MPLAB C32. I want to map my peripherals in streams, in order to do something like: FILE* uart2 = fopen("UART2", 9600, param2, param3); or just FILE* uart2 = fopen("UART"); and then ...
1
vote
1answer
422 views

Accuracy of Timer1 as real time clock with PIC Interrupts on 16F*

I'm using C with the BoostC compiler. I'm worried how accurate my code is. The configuration below ticks at more or less 1Hz, (tested with an LED to the naked eye). (It uses an external watch crystal ...
1
vote
2answers
353 views

strange malloc behavior with Doug Lea allocator

I have an very small system with only 16kb of heap, no mmap, no swap. I'm using the latest version 2.8.5 of Doug Lea allocator ftp://g.oswego.edu/pub/misc/malloc-2.8.5.c UPDATE I made a smaller test ...
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 ...
1
vote
1answer
387 views

node.js for microchip pic32

I know lua is working on microchip PIC32 and I wonder if node.js (a javascript for server) could work on it too or if the lib will be too big or too slow for a PIC32.
1
vote
5answers
1k views

FreeRTOS tasks are not context switching

Im using freeRtos port for PIC32 microcontroller on the pic32mx starter kit. Was just playing with tasks but the tasks arent context switching.. here are my main config settings #define ...
1
vote
3answers
469 views

dspic 33 - watchdog timer

hi i would like to know if there is a way to implement the watchdog timer within the microchip's dspic33 without the configuration bits, but only in the source code itself thanks eran
1
vote
3answers
173 views

Microchip's MPLAB IDE equivalent for 8086 assembly

I always wanted to learn 8086 assembly but was (and am) a little confused on where to start. We are learning PIC16F690 at the moment in school and I'm good at it. So I guess I can give 8086 a try. I'm ...
1
vote
1answer
377 views

Can Microchip TCP/IP stack implements two or more clients sockets at the same time?

I need to make one device communicate with 2 servers. Is it possible with Microchip TCP/IP stack?
1
vote
2answers
2k views

Writing to EEPROM on PIC

Are there any PIC microcontroller programmers here? I'm learning some PIC microcontroller programming using a pickit2 and the 16F690 chip that came with it. I'm working through trying out the various ...
1
vote
2answers
995 views

Sending data over tcpip using Microchip's PIC18F

All of the examples in the TCPIP Demo App are built using a custom program that designs a webpage that triggers callbacks when the webpage is changed. Is it possible to get a value from a sensor ...

1 2