Skip to content
Snippets Groups Projects
Select Git revision
  • e38234a1decfea8227d4cfd59585e179d7d62ef1
  • master default protected
  • bme680_demoapp
  • bme680
  • rahix/simple_menu
  • genofire/ble-rewrite
  • rahix/batt
  • schneider/bonding2
  • renze/safe_mode
  • renze/hatchery_apps
  • schneider/fundamental-test
  • koalo/factory-reset
  • ios-workarounds
  • msgctl/gfx_rle
  • msgctl/faultscreen
  • msgctl/textbuffer_api
  • schneider/bonding
  • schneider/bootloader-update-9a0d158
  • schneider/bsec
  • rahix/bma
  • rahix/bhi
  • v1.1
  • v1.0
  • release-1
  • bootloader-v1
  • v0.0
26 results

ble_main.c

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    filesystem.h 589 B
    #ifndef EPICARDIUM_MODULE_FILESYSTEM_INCLUDED
    #define EPICARDIUM_MODULE_FILESYSTEM_INCLUDED
    
    /* ---------- FAT fs ------------------------------------------------------ */
    
    #include <stdbool.h>
    #include "epicardium.h"
    
    /**
     * module initialization - to be called once at startup before any FreeRTOS tasks
     * have been started
     *
     * calls fatfs_attach
     */
    void fatfs_init(void);
    
    /**
     * initialize and mount the FLASH storage
     */
    int fatfs_attach(void);
    
    /** close all opened FDs, sync and deinitialize FLASH layer */
    void fatfs_detach(void);
    
    #endif//EPICARDIUM_MODULE_FILESYSTEM_INCLUDED