Tagged Questions

PIC is a family of Harvard architecture microcontrollers made by Microchip Technology.

learn more… | top users | synonyms

15
votes
13answers
1k views

Which embedded (microcontroller) platform to move to

I have been programming with 8bit PICs for quite some time but now need to move to something more powerful. I would like a family of chips that: I can get a good (free) IDE for Solderable packages, ...
13
votes
15answers
1k views

Getting Started With Programming PICs (or similar products)

How do I get started with programming PICs (or similar products)? Preferably in C. What are some good beginner kits, tutorials, books, etc.? Maybe some little robotic project ideas.
12
votes
2answers
353 views

Why does uint16_t make a difference here?

volatile uint16_t r; unsigned char poly = 0x07; unsigned char c = 0; r = (c << 8) ^ poly; When the code is compiled with gcc on Linux, r is 7. When the same code is compiled by Microchip C18, ...
10
votes
2answers
148 views

Does 32bit x86 code need to be specially PIC-compiled for shared library files?

Compiling code to an object file needs to be done position-independent if the object file is intended to be loaded as a shared library (.so), because the base virtual address that the shared object ...
9
votes
6answers
1k views

What microcontroller (and other components) would I need to create a timer device?

As a hobby project to keep myself out of trouble, I'd like to build a little programmer timer device. It will basically accept a program which is a list of times and then count down from each time. ...
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
1answer
356 views

Can I make a function that accepts both ram and rom pointers in Microchip C18?

When I declare a function that accepts const char* and I pass a string literal, I get a Warning: [2066] type qualifier mismatch in assignment because string literals are rom const char*. It's ...
7
votes
2answers
347 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
3answers
381 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
6answers
208 views

Is my MIPS compiler crazy, or am I crazy for choosing MIPS?

I am using a MIPS CPU (PIC32) in an embedded project, but I am starting to question my choice. I understand that a RISC CPU like MIPS will generate more instructions than one might expect, but I ...
6
votes
3answers
771 views

Free PIC C compiler

I am looking for a free, and possibly open source C compiler for PIC. I might go without C, but I would like to get both options. There are various compilers out there, but since I have never done ...
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
492 views

8051 microcontroller kit recommendation?

I'm a first year Computer Science student looking to get started with development for micro-controllers. I'd like to use the 8051, as it's common as dirt, and is used frequently in the real world. ...
4
votes
4answers
106 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
68 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
5answers
160 views

PIC C - What's the purpose of this?

In Microchip TCP/IP stack we encounter the following code: while(1) { AppConfig.MyIPAddr.Val = MY_DEFAULT_IP_ADDR_BYTE1 | MY_DEFAULT_IP_ADDR_BYTE2<<8ul | ...
4
votes
2answers
307 views

PIC32 bluetooth

I want to implement bluetooth communication on my final bachelor project, but I'm having a lot of doubts. One of the requisites of this project is to have a Java application that can talk to the ...
4
votes
5answers
1k views

Free alternative to MPLAB (PIC development)

I started using MPLAB recently, but for someone that works with Eclipse and VS the IDE it's very limited. Do you know any free IDE or how to configure Ecplise or Netbeans to PIC development? Thanks ...
4
votes
4answers
321 views

What is the best way of sending the data to serial port?

This is related with microcontrollers but thought to post it here because it is a problem with algorithms and data types and not with any hardware stuff. I'll explain the problem so that someone that ...
4
votes
1answer
876 views

USB HID protocol question

I'm implementing USB on a PIC 18F2550 using a generic HID interface. I've set up the HID profile configuation to have a single 64 byte message for both inputs and outputs. Now it's basically working. ...
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 ...
4
votes
9answers
417 views

I'd like to move on to µC programming, but I have absolutely no idea where to start from

I've been thinking quite some time about 'moving on' to MCU programming, but the problem is I've never worked with any microcontrollers or similar. As I've been told, AVR and PIC are the most common ...
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
7answers
3k views

PIC16 C compiler

I am looking for a good C compiler for the PIC 16 family, working on Windows. A couple of colleagues use bknudc but some seem to dislike it. Apparently you cannot use the linker efficiently, and it ...
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 ...
4
votes
4answers
975 views

Writing apps in C for microcontrollers

What resources do you know dedicated to software development in C for PIC microcontrollers? I would like to see some kind of framework that handles both IO (buttons for input and LCD for output) and ...
3
votes
1answer
104 views

Writing to EEPROM PIC?

I'm working on a project in which i need to be able to store a value to the PIC's EEPROM, I have managed to get the read to work but so far i am unable to get the PIC to write to the memory using PIC ...
3
votes
1answer
92 views

unknown Opcode '.pword'

When I compile my code I am getting a unknown Opcode '.pword' error. The only line of code in my project that has .pword is: do { __asm__ volatile (" .pword 0xDA4000"); Nop(); } while(0) ...
3
votes
1answer
81 views

Creating an ASM file that will return the characters located in 8 consecutive registers

I have to create an ASM file for the PIC18F452 that does the following: (a) define the label MapName as the first of 8 consecutive registers containing a null-terminated string of not more than 7 ...
3
votes
4answers
188 views

Micro-Controllers programming using C++

I'm having this robotic arm project along with some engineers we haven't settled for the Micro Controller of choice yet but currently a PIC is being tested. I was wondering if there were Micros that ...
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
7answers
3k views

Are any MP3 encoder libraries PIC microcontroller compatible?

I know that are many MP3 encoder libraries, but any of them could work on a PIC microcontroller?
2
votes
2answers
36 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
6answers
70 views

integer overflow in a PIC — where's the flow go?

Working with a Microchip 18f4620 PIC. This should be a standard ANSI C question, though. Say I have unsigned int16 badFlow=65535 //max unsigned int16 value This has a binary value of 1111 1111 ...
2
votes
3answers
63 views

Micro-Controllers Programming

I bought an Inductance sensor that is used to detect cars for using it in my current Project, my question is: How do I program this sensor or interface with it to read data from it, what is the ...
2
votes
5answers
151 views

Increasing performance of 32bit math on 16bit processor

I am working on some firmware for an embedded device that uses a 16 bit PIC operating at 40 MIPS and programming in C. The system will control the position of two stepper motors and maintain the step ...
2
votes
2answers
102 views

Ruby for the PIC32 Microcontroller

Is there an existing library to write code for the PIC32 in Ruby? Currently I've been writing code in C to perform tasks on it, but I would love to use Ruby. Thanks, Andy
2
votes
1answer
164 views

Compiler warnings with SDCC

Using SDCC 3.0.0. Compiling this code #include < pic16f84.h> void main(void) { TRISA0=0; RA0=1; } and receive these warnings. daedalus@Eurydice:~/Projects/PIC$ sdcc -I ...
2
votes
1answer
157 views

Assembly of PIC

The address of str is stored the stack(can use pop to fetch it, and it's position independent): .text str: .string "test\n" But now the address of str is not in the stack(can't use pop ...
2
votes
4answers
139 views

How to convert an int to a series of characters

I'm trying to break down an integer with C on an 8-bit microcontroller (a PIC) into its ASCII equivalent characters. For example: convert 982 to '9','8','2' Everything I've come up with so far seems ...
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
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
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
1answer
403 views

Can`t debug pic32 microcontroller or update the configuration bits

i have an PIC32MX460L512 microcontroler( Cerebot MX4 board from Digilent) and after doing some projects, i can`t program it any more. This happend after i tested the board multipliers and dividers to ...
2
votes
1answer
350 views

PIC Capture mode not triggering interrupt

I'm trying to use the capture module on a PIC 16LF1827, but the ISR is never entered. I started with a basic falling-edge interrupt (worked), then added in the timer 1 configuration (still working), ...
2
votes
2answers
145 views

Understanding Frequency / Oscillation of a Chip

I have literally no clue what it is. Wouldn't even know how to go about finding what it is. I would greatly appreciate any help.
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
169 views

the meaning of the following assembly code, help

The following piece of code is from u-boot: /* Initialize GOT pointer. ** Global symbols can't be resolved before this is done, and as such we can't ** use any global symbols ...
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 ...

1 2 3 4