ESP8266 ILI9341 display support code with printf sources, wire-frame viewer and custom fonts  1.0
ESP8266ILI9341DisplayProject
Data Structures | Macros | Typedefs | Functions
cont.h File Reference
#include <stdbool.h>

Go to the source code of this file.

Data Structures

struct  cont_
 

Macros

#define CONT_STACKSIZE   (1024*4)
 

Typedefs

typedef struct cont_ cont_t
 

Functions

void cont_init (cont_t *)
 
void cont_run (cont_t *, void(*pfn)(void))
 
void cont_yield (cont_t *)
 
int cont_check (cont_t *cont)
 
bool cont_can_yield (cont_t *cont)
 

Macro Definition Documentation

#define CONT_STACKSIZE   (1024*4)

Definition at line 27 of file cont.h.

Typedef Documentation

typedef struct cont_ cont_t

Function Documentation

bool cont_can_yield ( cont_t cont)

Definition at line 44 of file cont_util.c.

Referenced by esp_yield(), optimistic_yield(), and yield().

int cont_check ( cont_t cont)

Definition at line 36 of file cont_util.c.

Referenced by loop_task().

void cont_init ( cont_t )

Definition at line 27 of file cont_util.c.

Referenced by user_init().

void cont_run ( cont_t ,
void(*)(void)  pfn 
)

Referenced by loop_task().

void cont_yield ( cont_t )

Referenced by esp_yield().