Started Webserver RNDIS host project.
This commit is contained in:
parent
89e4d73289
commit
f0d6d4ef13
33 changed files with 9045 additions and 2 deletions
43
Projects/Incomplete/Webserver/Lib/uip/conf/clock-arch.c
Normal file
43
Projects/Incomplete/Webserver/Lib/uip/conf/clock-arch.c
Normal file
|
@ -0,0 +1,43 @@
|
|||
#include "global-conf.h"
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <avr/interrupt.h>
|
||||
#include <avr/io.h>
|
||||
#include <avr/sfr_defs.h>
|
||||
|
||||
#include "clock-arch.h"
|
||||
|
||||
//Counted time
|
||||
volatile clock_time_t clock_datetime = 0;
|
||||
|
||||
//Overflow interrupt
|
||||
ISR(TIMER0_OVF_vect)
|
||||
{
|
||||
clock_datetime += 1;
|
||||
}
|
||||
|
||||
//Initialise the clock
|
||||
void clock_init()
|
||||
{
|
||||
//Activate overflow interrupt for timer0
|
||||
TIMSK0 |= (1<<TOIE0);
|
||||
|
||||
//Use prescaler 1024
|
||||
TCCR0B |= ((1<<CS12)|(1<<CS10));
|
||||
|
||||
//Activate interrupts
|
||||
sei();
|
||||
}
|
||||
|
||||
//Return time
|
||||
clock_time_t clock_time()
|
||||
{
|
||||
clock_time_t time;
|
||||
|
||||
cli();
|
||||
time = clock_datetime;
|
||||
sei();
|
||||
|
||||
return time;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue