2021-08-08 21:03:25 +03:00
|
|
|
#pragma once
|
|
|
|
|
2022-01-05 19:10:18 +03:00
|
|
|
#include <furi_hal_i2c.h>
|
|
|
|
#include <furi_hal_light.h>
|
|
|
|
#include <furi_hal_resources.h>
|
|
|
|
#include <furi_hal_spi.h>
|
|
|
|
#include <furi_hal_version.h>
|
2021-08-08 21:03:25 +03:00
|
|
|
|
2021-10-17 23:34:36 +03:00
|
|
|
#define furi_assert(value) (void)(value)
|
|
|
|
|
|
|
|
void furi_hal_init();
|
|
|
|
|
|
|
|
void delay(float milliseconds);
|
|
|
|
|
|
|
|
void delay_us(float microseconds);
|