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
DuerOS-Light-SDK-v1.1.0/duer-os-light/boards/TARGET_RDA/package_scanner.h
- Committer:
- TMBOY
- Date:
- 2017-07-18
- Revision:
- 47:9e361da97763
File content as of revision 47:9e361da97763:
#pragma once
#include "package_info.h"
class PackageScanner
{
public:
PackageScanner();
~PackageScanner();
int scan();
int getOSInfo(os_info_t& info);
int getAppInfo(app_info_t*& info);
private:
os_info_t os_info;
app_info_t *apps; //app info kept in an array which ends with null pointer
};
