2011-07-24 13:44:35 +00:00
|
|
|
#include <sysinit.h>
|
|
|
|
|
|
|
|
#include "basic/basic.h"
|
|
|
|
#include "lcd/print.h"
|
|
|
|
|
|
|
|
QUEUE the_queue;
|
|
|
|
volatile uint32_t _timectr=0;
|
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
void work_queue(void){
|
|
|
|
void (*elem)(void);
|
|
|
|
int start;
|
|
|
|
|
|
|
|
if (the_queue.qstart == the_queue.qend){
|
2011-07-24 20:14:06 +00:00
|
|
|
#ifdef ARM
|
2011-07-24 13:44:35 +00:00
|
|
|
__asm volatile ("WFI");
|
2011-07-24 20:14:06 +00:00
|
|
|
#endif
|
2011-07-24 13:44:35 +00:00
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
|
|
|
start=the_queue.qstart;
|
|
|
|
start=(start+1)%MAXQENTRIES;
|
|
|
|
elem=the_queue.queue[start].callback;
|
|
|
|
the_queue.qstart=start;
|
|
|
|
|
|
|
|
elem();
|
|
|
|
};
|
|
|
|
|
2011-07-24 14:03:19 +00:00
|
|
|
void delayms_queue(uint32_t ms){
|
2011-07-24 13:44:35 +00:00
|
|
|
int end=_timectr+ms/10;
|
|
|
|
do {
|
|
|
|
if (the_queue.qstart == the_queue.qend){
|
2011-07-24 20:14:06 +00:00
|
|
|
#ifdef ARM
|
2011-07-24 13:44:35 +00:00
|
|
|
__asm volatile ("WFI");
|
2011-07-24 20:14:06 +00:00
|
|
|
#endif
|
2011-07-24 13:44:35 +00:00
|
|
|
}else{
|
|
|
|
work_queue();
|
|
|
|
};
|
|
|
|
} while (end >_timectr);
|
|
|
|
};
|
|
|
|
|
2011-07-24 14:03:19 +00:00
|
|
|
void delayms_power(uint32_t ms){
|
|
|
|
do {
|
|
|
|
ms-=10;
|
2011-07-24 20:14:06 +00:00
|
|
|
#ifdef ARM
|
2011-07-24 14:03:19 +00:00
|
|
|
__asm volatile ("WFI");
|
2011-07-24 20:14:06 +00:00
|
|
|
#endif
|
2011-07-24 14:03:19 +00:00
|
|
|
} while(ms>10);
|
|
|
|
};
|
|
|
|
|
2011-07-24 13:44:35 +00:00
|
|
|
int push_queue(void (*new)(void)){
|
|
|
|
int end;
|
|
|
|
|
|
|
|
end=the_queue.qend;
|
|
|
|
end=(end+1)%MAXQENTRIES;
|
|
|
|
|
|
|
|
if(end == the_queue.qstart) // Queue full
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
the_queue.queue[end].callback=new;
|
|
|
|
the_queue.qend=end;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
};
|