Cascoda SDK
Cascoda SDK for building software to run with CA-821x transceivers
|
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "cascoda-bm/cascoda_evbme.h"
#include "cascoda-bm/cascoda_sensorif.h"
#include "cascoda-bm/cascoda_serial.h"
#include "cascoda-bm/cascoda_spi.h"
#include "cascoda-bm/cascoda_types.h"
#include "cascoda-bm/cascoda_wait.h"
#include "cascoda-util/cascoda_tasklet.h"
#include "cascoda-util/cascoda_time.h"
#include "ca821x_api.h"
#include "cascoda-bm/test15_4_evbme.h"
#include "sif_il3820.h"
#include "gfx_driver.h"
#include "gfx_library.h"
Macros | |
#define | NUMFLAKES 10 |
#define | XPOS 0 |
#define | YPOS 1 |
#define | DELTA_Y 2 |
#define | LOGO16_GLCD_HEIGHT 16 |
#define | LOGO16_GLCD_WIDTH 16 |
#define | min(a, b) (((a) < (b)) ? (a) : (b)) |
Functions | |
void | testdrawbitmap (const uint8_t *bitmap, uint8_t w, uint8_t h) |
void | testdrawchar (void) |
void | testdrawcircle (void) |
void | testfillrect (void) |
void | testdrawtriangle (void) |
void | testfilltriangle (void) |
void | testdrawroundrect (void) |
void | testfillroundrect (void) |
void | testdrawrect (void) |
void | testdrawline (void) |
ca_error | handle_tests (void *args) |
void | main (void) |
Variables | |
const char | logo16_glcd_bmp [] |
#define DELTA_Y 2 |
#define LOGO16_GLCD_HEIGHT 16 |
#define LOGO16_GLCD_WIDTH 16 |
#define min | ( | a, | |
b | |||
) | (((a) < (b)) ? (a) : (b)) |
#define NUMFLAKES 10 |
#define XPOS 0 |
#define YPOS 1 |
ca_error handle_tests | ( | void * | args | ) |
void main | ( | void | ) |
void testdrawbitmap | ( | const uint8_t * | bitmap, |
uint8_t | w, | ||
uint8_t | h | ||
) |
void testdrawchar | ( | void | ) |
void testdrawcircle | ( | void | ) |
void testdrawline | ( | void | ) |
void testdrawrect | ( | void | ) |
void testdrawroundrect | ( | void | ) |
void testdrawtriangle | ( | void | ) |
void testfillrect | ( | void | ) |
void testfillroundrect | ( | void | ) |
void testfilltriangle | ( | void | ) |
const char logo16_glcd_bmp[] |