mch2022-talktopics/main/include/fpga_test.h

15 lines
398 B
C
Raw Normal View History

2022-04-08 21:15:57 +00:00
#pragma once
#include <sdkconfig.h>
#include <freertos/FreeRTOS.h>
#include <freertos/task.h>
#include <freertos/queue.h>
2022-04-08 21:15:57 +00:00
#include "hardware.h"
#include "rp2040.h"
#include "ili9341.h"
#include "ice40.h"
#include "pax_gfx.h"
2022-04-08 21:15:57 +00:00
2022-06-02 23:30:50 +00:00
void fpga_test(xQueueHandle buttonQueue, pax_buf_t* pax_buffer, ILI9341* ili9341);
bool run_fpga_tests(xQueueHandle buttonQueue, pax_buf_t* pax_buffer, ILI9341* ili9341);