【发布时间】:2017-07-26 09:30:29
【问题描述】:
我可以构建我的程序并在树莓派启动时运行它吗?不使用 Visual Studio 的调试工具? 我正在使用带有 Windows 10 IOT 的 Raspberry Pi 3。
【问题讨论】:
标签: raspberry-pi raspberry-pi3 windows-iot-core-10
我可以构建我的程序并在树莓派启动时运行它吗?不使用 Visual Studio 的调试工具? 我正在使用带有 Windows 10 IOT 的 Raspberry Pi 3。
【问题讨论】:
标签: raspberry-pi raspberry-pi3 windows-iot-core-10
在您deployed your app to Windows iot core 设备之后。有两种方法可以让您的应用在启动(启动)时运行:
IotStartup add headed [MyApp] //adds headed applications that match pattern MyApp. Pattern must match only one application.
IotStartup add headless [Task1] //adds headless applications that match pattern Task1
在 STARTUP 列下,您可以选择尽可能多的背景 应用程序默认启动,但只能设置一个前台 应用。
【讨论】: