Skip to content
Snippets Groups Projects
Commit 4234cea2 authored by q3k's avatar q3k
Browse files

*: sort ctx_config.h/ctx.h imports

parent eebdfaf9
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,10 @@
#include "freertos/FreeRTOS.h"
#include "freertos/queue.h"
#include "ctx.h"
// clang-format off
#include "ctx_config.h"
#include "ctx.h"
// clang-format on
#include "flow3r_bsp.h"
#include "st3m_counter.h"
......
......@@ -2,8 +2,10 @@
#include "freertos/FreeRTOS.h"
#include "ctx.h"
// clang-format off
#include "ctx_config.h"
#include "ctx.h"
// clang-format on
// Each buffer takes ~116kB SPIRAM. While one framebuffer is being blitted, the
// other one is being written to by the rasterizer.
......@@ -68,4 +70,4 @@ void st3m_gfx_show_textview(st3m_gfx_textview_t *tv);
// The splash screen is rendered the same way as if submitted by the normal
// drawctx pipe, which means they will get overwritten the moment a proper
// rendering loop starts.
void st3m_gfx_splash(const char *text);
\ No newline at end of file
void st3m_gfx_splash(const char *text);
......@@ -6,8 +6,10 @@
#include "freertos/FreeRTOS.h"
#include "freertos/atomic.h"
#include "ctx.h"
// clang-format off
#include "ctx_config.h"
#include "ctx.h"
// clang-format on
st3m_scope_t scope = {
0,
......
......@@ -19,8 +19,10 @@
#include "st3m_scope.h"
#include "st3m_usb.h"
#include "ctx.h"
// clang-format off
#include "ctx_config.h"
#include "ctx.h"
// clang-format on
mp_obj_t mp_ctx_from_ctx(Ctx *ctx);
......
......@@ -8,8 +8,10 @@
#include "py/objarray.h"
#include "py/runtime.h"
#include "ctx.h"
// clang-format off
#include "ctx_config.h"
#include "ctx.h"
// clang-format on
typedef struct _mp_ctx_obj_t {
mp_obj_base_t base;
......
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