pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
721 B
22 lines
721 B
/* This file eases the integration of your personal animations which are not
|
|
meant to be included in the official Borgware-2D repository.
|
|
|
|
It is inserted at the middle of the big switch/case block of the
|
|
src/display_loop.c file. Please make sure that you use a mode number
|
|
200<=n<=252 to avoid conflicts with newer upstream animations.
|
|
|
|
Just add your case blocks (guarded by the config options you introduced in
|
|
config.in) as shown in the commented samples. */
|
|
|
|
// #ifdef ANIMATION_MY_SIMPLE_ANIM
|
|
// case 200:
|
|
// my_simple_animation();
|
|
// break;
|
|
// #endif
|
|
|
|
// #ifdef ANIMATION_MY_COMPLEX_ANIM
|
|
// case 201:
|
|
// my_complex_animation(MY_SAMPLE_INT, MY_SAMPLE_BOOL);
|
|
// break;
|
|
// #endif
|
|
|
|
|