Skip to content
Snippets Groups Projects
Select Git revision
  • 275c99ccf6705dd5ddd57a244297f918b787a2c9
  • master default protected
  • fix-warnings
  • tvbgone-fixes
  • genofire/ble-follow-py
  • schneider/ble-stability-new-phy-adv
  • schneider/ble-stability
  • msgctl/gfx_rle
  • schneider/ble-stability-new-phy
  • add_menu_vibration
  • plaetzchen/ios-workaround
  • blinkisync-as-preload
  • schneider/max30001-pycardium
  • schneider/max30001-epicaridum
  • schneider/max30001
  • schneider/stream-locks
  • schneider/fundamental-test
  • schneider/ble-buffers
  • schneider/maxim-sdk-update
  • ch3/splashscreen
  • koalo/bhi160-works-but-dirty
  • v1.11
  • v1.10
  • v1.9
  • v1.8
  • v1.7
  • v1.6
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
36 results

conf.py

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    api.h 360 B
    #ifndef _API_H
    #define _API_H
    
    #ifndef API
    #  define API(id, def) def
    #endif
    
    #define API_FOO 0x35c3
    API(API_FOO, void foo(short x, int y, char z, int w));
    
    #define API_BAR 0xc0ffee
    API(API_BAR, void bar(char*astr));
    
    typedef struct {
        int foo;
        int bar;
        int baz;
    } qux_t;
    
    #define API_QUX 0xCCC
    API(API_QUX, void qux(qux_t q));
    
    #endif /* _API_H */