mirror of
https://github.com/badgeteam/mch2022-template-app.git
synced 2024-11-04 15:59:37 +00:00
13 lines
289 B
C
13 lines
289 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <sdkconfig.h>
|
|
#include <esp_system.h>
|
|
#include <freertos/FreeRTOS.h>
|
|
#include <freertos/task.h>
|
|
#include <freertos/queue.h>
|
|
#include "pax_gfx.h"
|
|
#include "ili9341.h"
|
|
|
|
|
|
void rp2040_updater(RP2040* rp2040, pax_buf_t* pax_buffer, ILI9341* ili9341);
|