Compatibility with 1.6 SDK

This commit is contained in:
BTChip 2019-11-03 17:24:43 +01:00
parent 6eb81afec9
commit 3ae6f0d8f5

View File

@ -18,20 +18,19 @@
#include "bolos_target.h"
#if TARGET_ID == 0x31100004
//Use original naming of NanoS 1.5.5
#elif TARGET_ID == 0x33000004
#if (TARGET_ID == 0x33000004) || ((TARGET_ID == 0x31100004) && (CX_APILEVEL >= 10))
#include "os_io_usb.h"
// from NanoX 1.2.4 remap G_io_apdu_xx
#define G_io_apdu_state G_io_app.apdu_state
#define G_io_apdu_length G_io_app.apdu_length
#define G_io_apdu_state G_io_app.apdu_state
#elif TARGET_ID == 0x31100004
//Use original naming of NanoS 1.5.5
#else
//Unknown
#error Target Not Supported
#endif
#endif
#endif