You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB
C++

/**
******************************************************************************
* @file Loader.h
* @author Waveshare Team
* @version V1.0.0
* @date 23-January-2018
* @brief The main file.
* This file provides firmware functions:
* + Initialization of Serial Port, SPI pins and server
* + Main loop
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "srvr.h" // Server functions
/* Entry point ----------------------------------------------------------------*/
void setup()
{
// Serial port initialization
Serial.begin(115200);
delay(10);
// Server initialization
Srvr__setup();
// SPI initialization
EPD_initSPI();
// Initialization is complete
Serial.print("\r\nOk!\r\n");
}
/* The main loop -------------------------------------------------------------*/
void loop()
{
// The server state observation
Srvr__loop();
}