remove dependency on Atmel HRI in storage module

This commit is contained in:
joeycastillo
2024-09-18 17:44:14 -04:00
parent d0ca6a025a
commit 66f7a8802e
4 changed files with 12 additions and 11 deletions

View File

@@ -70,7 +70,7 @@ typedef void (*watch_cb_t)(void);
// #include "watch_i2c.h"
// #include "watch_spi.h"
// #include "watch_uart.h"
// #include "watch_storage.h"
#include "watch_storage.h"
#include "watch_deepsleep.h"
/** @brief Interrupt handler for the SYSTEM interrupt, which handles MCLK,

View File

@@ -21,8 +21,9 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef _WATCH_STORAGE_H_INCLUDED
#define _WATCH_STORAGE_H_INCLUDED
#pragma once
////< @file watch_storage.h
#include "watch.h"
@@ -89,4 +90,3 @@ bool watch_storage_erase(uint32_t row);
*/
bool watch_storage_sync(void);
/// @}
#endif