Skip to content
Snippets Groups Projects
Commit 1c11b8e9 authored by fxk8y's avatar fxk8y :spider:
Browse files

code style: move includes from header to sourcefile

parent c3d9b304
No related branches found
No related tags found
2 merge requests!8Updating bme280-qthing,!4add ntp service
#include "ntp.h"
#include <qthing.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "apps/sntp/sntp.h"
#include <time.h>
#include "esp_log.h"
typedef struct {
bool started;
......
#pragma once
#include <qthing.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "apps/sntp/sntp.h"
#include <time.h>
#include "esp_log.h"
extern "C" {
void setenv(char *env, char *value, int overwrite);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment