Skip to content
Snippets Groups Projects
Select Git revision
  • bb13e44c6dbc0e9d333661c4cc7ba713e76a6d60
  • master default protected
  • electrodes
  • b-butwasntthisaboutchaos
  • fontcleanup
  • nodisplaynoproblem
  • fleur/improved_font_rendering
  • fleur/portexpander_fix
  • fleur/transprint
  • fleur/florapower
  • fleur/comicsans
  • fleur/leds
  • fleur/buttons
13 results

display.py

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    api_dispatcher.c 253 B
    #include "api_dispatcher.h"
    
    int
    api_init (sys_cfg_sema_t *sys_cfg)
    {
    	int ret;
    
    	ret = SEMA_Init (sys_cfg);
    	/* Set the status of the flag to a valid initial state (right before
    	 * api-calls are made) */
    	ApiCallSpace->returning = 1;
    
    	return ret;
    }