mirror of
https://github.com/RfidResearchGroup/ChameleonMini.git
synced 2026-05-12 11:20:37 -07:00
27 lines
527 B
C
27 lines
527 B
C
#ifndef CHAMELEON_MINI_H
|
|
#define CHAMELEON_MINI_H
|
|
|
|
#include <avr/io.h>
|
|
#include <avr/wdt.h>
|
|
#include <avr/interrupt.h>
|
|
#include <avr/power.h>
|
|
|
|
#include "System.h"
|
|
#include "Memory.h"
|
|
#include "LED.h"
|
|
#include "LEDHook.h"
|
|
#include "Terminal/Terminal.h"
|
|
#include "Codec/Codec.h"
|
|
#include "Application/Application.h"
|
|
#include "Configuration.h"
|
|
#include "Random.h"
|
|
#include "Button.h"
|
|
#include "Log.h"
|
|
#include "AntennaLevel.h"
|
|
#include "Settings.h"
|
|
|
|
#define CHAMELEON_MINI_VERSION_STRING BUILD_DATE
|
|
|
|
#endif //CHAMELEON_MINI_H
|
|
|