Files
firmware/right/src/buspal/bootloader/bl_context.h
2017-04-13 00:42:03 +02:00

13 lines
238 B
C

#ifndef __CONTEXT_H__
#define __CONTEXT_H__
#include "command.h"
typedef struct _bootloaderContext {
const peripheral_descriptor_t *activePeripheral;
} bootloader_context_t;
extern bootloader_context_t g_bootloaderContext;
#endif