"Das U-Boot" Source Tree
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at pomera-dm250 21 lines 538 B view raw
1/* SPDX-License-Identifier: BSD-3-Clause */ 2/* 3 * (C) Copyright 2021, Foundries.IO 4 * 5 */ 6#ifndef __TA_SCP03_H 7#define __TA_SCP03_H 8 9#define PTA_SCP03_UUID { 0xbe0e5821, 0xe718, 0x4f77, \ 10 { 0xab, 0x3e, 0x8e, 0x6c, 0x73, 0xa9, 0xc7, 0x35 } } 11 12/* 13 * Enable Secure Channel Protocol functionality (SCP03) on the Secure Element. 14 * Setting the operation value to something different than NULL will trigger 15 * the SCP03 provisioning request. 16 * 17 * in params[0].a = operation 18 */ 19#define PTA_CMD_ENABLE_SCP03 0 20 21#endif /*__TA_SCP03_H*/