2021-08-08 21:03:25 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <furi-hal-i2c.h>
|
|
|
|
#include <furi-hal-light.h>
|
2021-08-12 11:48:05 +03:00
|
|
|
#include <furi-hal-resources.h>
|
|
|
|
#include <furi-hal-spi.h>
|
2021-10-21 15:24:34 +03:00
|
|
|
#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);
|