HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
timer_hal.c
Go to the documentation of this file.
1 
25 #include "user_config.h"
26 
27 #include "time.h"
28 #include "timer.h"
29 
30 // =============================================
32 #ifdef ESP8266
33 static ETSTimer task_1ms;
34 
39 {
40  os_timer_disarm(&task_1ms);
41 }
42 
43 
47 void enable_system_task()
48 {
49  os_timer_arm(&task_1ms, 1, 1);
50 }
51 
52 
56 {
57  os_timer_disarm(&task_1ms);
58  os_timer_setfn(&task_1ms, ( os_timer_func_t *) execute_timers, NULL );
59 }
60 #endif // ifdef ESP8266
61 // =============================================
62 
63 // =============================================
65 #ifdef AVR
66 /*< We can read a high resolution hardware timer */
68 #define HAVE_HIRES_TIMER
69 
71 #define TIMER1_PRESCALE 1L
72 
74 #define TIMER1_COUNTS_PER_TIC (F_CPU/TIMER1_PRESCALE/SYSTEM_TASK_HZ)
75 
77 #define TIMER1_COUNTER_RES (SYSTEM_TASK_TIC_NS/TIMER1_COUNTS_PER_TIC)
78 
79 #if TIMER1_COUNTS_PER_TIC >= 65535L
80 #error TIMER1_COUNTS_PER_TIC too big -- increase TIMER1 Prescale
81 #endif
82 
83 #define TIMER1_PRE_1 (1 << CS10) /*< 1 Prescale */
84 #define TIMER1_PRE_8 (1 << CS11) /*< 8 Prescale */
85 #define TIMER1_PRE_64 ((1 << CS11) | ( 1 << CS10))/*< 64 Prescale */
86 #define TIMER1_PRE_256 (1 << CS12) /*< 256 Prescale */
87 /*< 1024 Prescape */
88 #define TIMER1_PRE_1024 ((1 << CS12) | ( 1 << CS10))
89 
95 {
96  cli();
97 }
98 
99 
102 MEMSPACE
103 void enable_system_task()
104 {
105  sei();
106 }
107 
108 
123 {
124  cli();
125  TCCR1B=(1<<WGM12) | TIMER1_PRE_1; // No Prescale
126  TCCR1A=0;
127  OCR1A=(TIMER1_COUNTS_PER_TIC-1); // 0 .. count
128  TIMSK1 |= (1<<OCIE1A); //Enable the Output Compare A interrupt
129  sei();
130 }
131 
132 
137 ISR(TIMER1_COMPA_vect)
138 {
139  execute_timers();
140 }
141 
142 
143 #ifdef HAVE_HIRES_TIMER
144 MEMSPACE
154 int clock_gettime(clockid_t clk_id __attribute__((unused)), struct timespec *ts)
155 {
156  uint16_t count1,count2; // must be same size as timer register
157  uint32_t offset = 0;
158  uint8_t pendingf = 0;
159  int errorf = 0;
160 
161 // disable interrupts
162  cli();
163 
164  count1 = TCNT1;
165 
166  ts->tv_sec = __clock.tv_sec;
167  ts->tv_nsec = __clock.tv_nsec;
168 
169  count2 = TCNT1;
170 
171  if( TIFR1 & (1<<OCF1A) )
172  pendingf = 1;
173 
174  if (count2 < count1)
175  {
177  if( !pendingf )
178  errorf = -1; // counter overflow and NO pending is an error!
179  offset = TIMER1_COUNTS_PER_TIC; // overflow
180  }
181  else
182  {
183  if( pendingf )
184  offset = TIMER1_COUNTS_PER_TIC; // overflow
185  }
186  offset += count2;
187 
188 // enable interrupts
189  sei();
190 
191  offset *= TIMER1_COUNTER_RES;
192 
193  ts->tv_nsec += offset;
194 
195  if (ts->tv_nsec >= 1000000000L)
196  {
197  ts->tv_nsec -= 1000000000L;
198  ts->tv_sec++;
199  }
200  return(errorf);
201 }
202 #endif // ifdef HAVE_HIRES_TIMER
203 #endif // ifdef AVR
204 // =============================================
clockid_t
uint16_t clockid_t
type of clockid_t.
Definition: time.h:37
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
disable_system_task
MEMSPACE void disable_system_task(void)
ISR
ISR(TWI_vect)
I2C ISR for send/receive.
Definition: i2c.c:519
timespec::tv_nsec
long tv_nsec
Definition: time.h:88
execute_timers
void execute_timers()
Execute all user timers at SYSTEM_HZ rate. Called by system task.
Definition: timer.c:265
timespec::tv_sec
time_t tv_sec
Definition: time.h:87
NULL
#define NULL
Definition: user_config.h:85
timer.h
timer functions
time.h
Common Linux/POSIX time functions.
clock_gettime
MEMSPACE int clock_gettime(clockid_t clk_id __attribute__((unused)), struct timespec *ts)
Generic clock_gettime() function WITHOUT high resolution.
Definition: timer.c:386
__clock
volatile ts_t __clock
System Clock Time.
Definition: timer.c:38
install_timers_isr
MEMSPACE void install_timers_isr(void)
timespec
POSIX timespec.
Definition: time.h:85
enable_system_task
MEMSPACE void enable_system_task(void)