diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2018-10-25 15:17:23 -0700 |
---|---|---|
committer | Scott Rifenbark <srifenbark@gmail.com> | 2018-10-25 15:17:23 -0700 |
commit | 83bd353da3cebb7cd8d31f9a6f79ee9b7f90b82f (patch) | |
tree | 08efc7178cb67f2309489461d30dd551aba46f31 /docs/getting-started/app-workflow-intro.md | |
parent | 0eba225fb27ec0b87bfa80361314fec5ab901caa (diff) |
Application Development Workflow Content files
I have added new files for content for the "Application Development
Workflow" section that is temporarily in the "Getting Started"
section of the doc website.
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Diffstat (limited to 'docs/getting-started/app-workflow-intro.md')
-rw-r--r-- | docs/getting-started/app-workflow-intro.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/getting-started/app-workflow-intro.md b/docs/getting-started/app-workflow-intro.md new file mode 100644 index 0000000..073496c --- /dev/null +++ b/docs/getting-started/app-workflow-intro.md @@ -0,0 +1,35 @@ +# Overview # + +The application development workflow begins with securing the image +that runs on your hardware and finishes with debugging the application +as it runs on that hardware. + +The following figure and list overview the application development +process. +You can learn about the steps in the process by reading through the +remaining sections. + +**NOTE:** This procedure uses information from many other procedures +in the AGL Documentation set. +Links are provided when a set of steps is required that is documented +elsewhere. + +![Failed at Displaying My Image](images/app-developer-workflow.png) + +1. Download or build the image you are going to run on the hardware device. + +2. Download or build the Software Development Kit (SDK) you use to create your application. + +3. Create bootable media using your image. + +4. Boot your hardware device with the media. + +5. Prepare your environment so that you can develop an application. +You can develop the application using XDS or using a stand-alone SDK. + +6. Create your application. + +7. Deploy the application to your hardware. + +8. Debug the application. + |