Maker Pro
Maker Pro

Microcontroller Programming

McDroogie

Dec 25, 2012
37
Joined
Dec 25, 2012
Messages
37
I'm fairly new to microcontrollers. I'm learning Arduino which I find fairly easy. However I would like to know what the most common method of programming standard alone micro controllers is. Is there a universal board that mounts microcontrollers and connects to the cpu via USB? An example of a microcontroller I'd like to use is this CD4518 which I would like to connect with a seven segment display in the future.
 

(*steve*)

¡sǝpodᴉʇuɐ ǝɥʇ ɹɐǝɥd
Moderator
Jan 21, 2010
25,510
Joined
Jan 21, 2010
Messages
25,510
You typically require a different programmer for different families of chips.

There are exceptions, however they're never truly universal as each different type of chip requires a different protocol to program. Even different chips within a "family" can require different protocols.

Look on ebay and you will find heaps of different programmers, but for compatibility, it may be best to stick to something that the manufacturer knows about (like, say, PicKit3 for PICs)
 

pwdixon

Oct 14, 2012
52
Joined
Oct 14, 2012
Messages
52
A CD4518 is a standard logic chip not a processor so you wouldn't need a programmer of any kind.
 

gorgon

Jun 6, 2011
603
Joined
Jun 6, 2011
Messages
603
The only universal programming protocol I've seen is JTAG and similar family types. This is normally not available for the smallest controller types, that use proprietary protocols and interfaces, as said before.

And yes, there are development boards for most microcontrollers, with USB connection.
 
Last edited:
Top