Best Microcontroller Projects


XML RSS
What is this?
Add to My Yahoo!
Add to My MSN
Add to Google

Home
LCD-KEYS OnePort
Digital Downloads
C Course
State Machines
Interrupt Secrets
Schematic Tool
PIC Introduction
PIC Programming
PIC Programmers
PIC Compilers
PIC Projects
Tips & Techniques
Store
My SECRET
Oscilloscopes
Contact Me
About Me
Terms of Use
Search This Site
Freebies
Articles
Problem?-Solution
MicroBlog
Books
Resource Links
Site Map
Your Projects
Video du Jour
Rant/Rave
Privacy Policy

I use and
recommend Firefox
for the best internet
browsing experience. Click below for your
free copy today:

CLICK THE IMAGE:


Note: I find it faster
and easier to use and
it has great plugins.  

It even imports all your current
browser settings!

There's no risk as your existing browser is not affected in any way - you can just choose which one to use.


Find Out How This
Site Works
Like any engineering problem with the right tools it's Easy.
CLICK HERE 

Social Bookmarking
Click & Add:
add to BlinkBlink
add to Del.icio.usDel.icio.us
add to DiggDigg
add to FurlFurl
add to GoogleGoogle
add to SimpySimpy
add to SpurlSpurl
Bookmark at TechnoratiTechnorati
add to YahooY! MyWeb
Find out Why social bookmarking is
Useful For You.

Readers comments

"I wanted to thank
you so so so much
for all the information
you have provided in
your site it's

SUPERB and FANTASTIC."


- Ranish Pottath


"This site really is
the best and my favorite.
I find here many useful
projects and tips."

- Milan

bursach<at>gmail.com

Learn PIC C Now
Wondering how to program your next project using C and need a great start?


"Awesome site,
very, very easy and nice
to navigate!"


- Matt
matt_tr<at>
wolf359.cjb.net


"I am a newbie to PIC
and I wanted to say
 how great your
site has been for me."


- Dave

de_scott<at>bellsouth.net

Learn Microcontrollers
"Interested in
Microcontrollers?"


Sign up for The
Free 7 day guide:

FREE GUIDE : CLICK HERE

"Your site is a great
and perfect work.
congratulations."


- Suresh

integratredinfosys<at>
yahoo.com

"I couldn't find the correct
words to define
yourweb site.

Very useful, uncovered,
honest and clear.

Thanks so much for
your time and works.
Regards."


- Anon





Multitasking for PIC micros

Every time you turn on your computer it is doing multitasking.  I still find that amazing - to think of all that the PC is capable of doing and all with one instruction at a time!


It simply means switching attention from one task to another to make it appear that many tasks are happening all at the same time.


To make it work in a PC you need to balance the speed of the processor with the tasks you ask it to do and in some cases extra external hardware is used to take the load off the processor e.g. maths co-processor (built into Pentium processor), graphics cards etc.


This is exactly the same for a PIC microcontroller but since it is not going at GHz speeds you have to carefully decide what tasks you need to do and how to make it work distributing a fair share of processing time to each task (or peripheral).

RTOS

An RTOS (Real Time Operating System) is the ultimate multitasking system and it does make writing code easier using flag signals for inter-process communication and providing prioritized task scheduling.

The penalty for using them is they take up code space and RAM resource (and they have a learning curve as there are a lot of details for RTOS control and task switching).

On the web you can find RTOS code for PIC micros but this is probably more appropriate for the larger 18F series micros as RTOS's tend to require larger RAM and program resources (Ram is used to save all the current task data between task switching) so you wont fit many tasks into a mid-range PIC micro.

Simple Multiple task scheduling

You can make a simple multiple task scheduler using interrupts and careful coding and it won't need a huge amount of memory or resources.

The advantage of this method is that you have full control over the code generated and can therefore fit it into tiny devices e.g. a 12F675 with 1k of program memory.

The disadvantage is that you have to be completely on top of how your code is working.  With an RTOS time slices are assigned to each task giving them a fair share of processing time.  With this method you need to decide how tasks are assigned processor time as you design the code.

All you do is place all your code in an loop and use variables within the loop to test the conditions you need e.g polling an input.  Each test section is more or less equivalent to a task in an RTOS.

Interrupts

As with any multitasking system the heart of a task scheduler is the main timer that can assign time slices to each process.  For this method a timer interrupt operates every n milliseconds and calls subordinate functions that require the highest priority.  Everything else is a low priority task that gets interrupted by the highest priority task.

The multitasking example I use here is taken from the 12F675 tutorial section - this uses a Timer 0 interrupt to execute the highest priority task(s) - in this case generating the servo motor output signal every 18ms.  If this signal is delayed then the servo motor position will change so this must be updated regularly and must have the highest priority.

The subordinate tasks are to send and receive serial data coded in software to/from separate pins.  Reception is done by continuously polling an input pin - obviously a better way would be to use another interrupt to detect the pin change - but there was not one available and it illustrates the principle well.

In this case the serial RS232 signals are not as important as the accurate servo motor signal as they are operating at 2400 Baud and can be interrupted (as the interrupt is slow compared to the transmission time of the RS232).

When you use this multitasking method you have to balance the processing time of the interrupt routine so that enough time is spent doing the RS232 communication and all this really means is make the ISR (Interrupt Service Routine) as short as possible.  Also in this case the interrupt routine occurs very infrequently i.e. every 18ms leaving plenty of time for all the other tasks.

Note: This multitasking method is useful for fairly small programs but I have worked in companies that used this method for an entire large project - you end up with zillions of variables and state machine operations transferring operation to different sections within the main loop (about 20 pages long!).  The whole thing becomes an unmanageable mess and if you have more than a few simple tasks it is better to switch to an RTOS as you can think of each task separately (even though the underlying code might be similar).  The RTOS lets you think of solving the task rather than overcoming hardware operation (or code operation!).



Jump from multitasking page to
Best-Microcontroller-Projects Home Page


Don't forget to Sign Up for your

Microcontroller Newsletter

With "Essential tips and techniques",

..."New Site Info" and more...

Including a free project :

How to drive an LCD and 12key keypad using "Only One 8 Bit Port" with no interface logic!...

(Works for any microcontroller)

This costs you : Nothing...
Just fill out the form below and you'll get full C source code and project schematic and description.



Email

Name

Then

Don't worry -- your e-mail address is totally secure.
I promise to use it only to send you MicroZine.
Google
 
  Best Microcontroller projects.