Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-os-example-mbed5-blinky by
package_info.h
00001 #pragma once 00002 #include <stdint.h> 00003 00004 #define MAX_NAME_LENGTH 64 00005 #define MAX_VERSION_LENGTH 24 00006 #define MAX_APPID_LENGTH 16 00007 00008 typedef struct 00009 { 00010 char name[MAX_NAME_LENGTH + 1]; 00011 char developer[MAX_NAME_LENGTH + 1]; 00012 char version[MAX_VERSION_LENGTH + 1]; 00013 char staged_version[MAX_VERSION_LENGTH + 1]; 00014 }os_info_t; 00015 00016 typedef struct 00017 { 00018 char id[MAX_APPID_LENGTH + 1]; 00019 char name[MAX_NAME_LENGTH + 1]; 00020 char developer[MAX_NAME_LENGTH + 1]; 00021 char version[MAX_VERSION_LENGTH + 1]; 00022 char staged_version[MAX_VERSION_LENGTH + 1]; 00023 char os_version[MAX_VERSION_LENGTH + 1]; 00024 }app_info_t;
Generated on Tue Jul 12 2022 16:28:53 by
1.7.2
