Skip to content

Instantly share code, notes, and snippets.

@ksksue
Created December 5, 2014 02:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksksue/286b17c8766ad113a542 to your computer and use it in GitHub Desktop.
Save ksksue/286b17c8766ad113a542 to your computer and use it in GitHub Desktop.
// Persistent storage system event handler
void pstorage_sys_event_handler (uint32_t p_evt);
/**@brief Function for dispatching a system event to interested modules.
*
* @details This function is called from the System event interrupt handler after a system
* event has been received.
*
* @param[in] sys_evt System stack event.
*/
static void sys_evt_dispatch(uint32_t sys_evt)
{
pstorage_sys_event_handler(sys_evt);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment