3
votes
9answers
144 views
Which embedded (microcontroller) platform to move to
Hi all.
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) …
2
votes
2answers
283 views
How to turn on a single Arduino port using C#?
I have an Arduino Duemilanove USB. I have just a single LED wired up to a single port on it. I want to use C# to turn on this LED. Does anyone have a simple example of how to do th …
2
votes
3answers
344 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 kn …
1
vote
3answers
97 views
Using Printf to display on serial port of an ARM microcontroller
I would like to use printf to diplay text on a serial port of an ARM microcontroller. I am unable to do so. Any help is appreciated.
My init_serial looks like this
void init_ser …
3
votes
3answers
82 views
Coding realtime clock for for ARM architecture based microcontroller
I need to write a program to implement real time clock for ARM architecture. example: LPC213x
It should display Hour Minute and Seconds. I have no idea about ARM so having trouble …
3
votes
9answers
336 views
clear code for counting from 0 to 255 using 8-bit datatype
I was wondering if there is a clean way of counting from 0 to 255 using an 8 bit datatype, something like:
for(uint8_t i(0);i<=255;++i)
{
....
}
This obviously will not w …
0
votes
1answer
42 views
Why do I get this error - “Read from unprogrammed EEPROM address” in HC12?
My code is given below
USER_STACKTOP equ $0a00 ;just above RAM area
PORTA equ $0000 ;Port A register
PORTB equ $0001 ;Port B register
PORTP equ $0056 ;Port P register
D …
1
vote
2answers
73 views
How to Get Ambient Temp from Arduino Lilypad Temperature Sensor
I am connecting a LilyPad Temperature sensor to a LilyPad Arduino 328 Main Board with the goal of reading fairly accurate ambient temperature readings. The sensor is receiving pow …
1
vote
2answers
106 views
FileHelpers-like data import/export utility for binary data?
I use the excellent FileHelpers library when I work with text data. It allows me to very easily dump text fields from a file or in-memory string into a class that represents the da …
6
votes
10answers
451 views
Getting Started With Programming PIC’s (or similar products)
Preferably in C. What are some good beginner kits,tutorials,books,etc.
Maybe some little robotic project ideas.
Thanks
1
vote
2answers
82 views
Micro-controller 8051: How to get addresses of inputs to JB & CJNE instructions?
I'm implementing whole set of 8051 instructions in VHDL from scratch. Most of things went well but stumbled on these 2 instructions:
JB bit,rel
00100000 bit_address rel_address
C …
0
votes
2answers
64 views
Code Banking with SDCC
I need to use code banking in an 8051 microcontroller to fit all the code. SDCC says it supports it, but I'm having trouble at the linking step.
I have a test project with 3 file …
2
votes
3answers
70 views
Books to read on networking and microcontrollers?
Hi folks,
I was recently elected programming team lead for my community college's engineering club. We're going to put a solar panel on a roof. The programming part involves
C …
1
vote
3answers
229 views
Fast Multiplication
Hi!
I'm writing code for a microprocessor with fast integer arithmetic and not so fast float arithmetic. I need to divide an integer by a number from 1 to 9 and convert result bac …
3
votes
5answers
157 views
How to generate random numbers in microcontrollers efficiently?
Any general guidelines? Or particular fast method?
Thanks in advance.
