interrupts, clock demo with interrupts

This commit is contained in:
Joey Castillo
2021-04-30 09:52:09 -04:00
parent a17d64bd11
commit 68bada3006
10 changed files with 116 additions and 53 deletions

View File

@@ -0,0 +1,17 @@
/*
* mars_clock.h
*
* Created: 4/29/2021 11:35:39 PM
* Author: joeycastillo
*/
#ifndef MARS_CLOCK_H_
#define MARS_CLOCK_H_
#include "hpl_calendar.h"
#include "watch-library/watch.h"
void update_display(Watch *watch, struct calendar_date_time date_time, bool local);
#endif /* MARS_CLOCK_H_ */