Skip to content
This repository has been archived by the owner on Nov 25, 2018. It is now read-only.

Commit

Permalink
Docs: Edit release archive information
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbuurlage committed Apr 24, 2015
1 parent 3312ea0 commit 437c01b
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions doc/getting_started.dox
Expand Up @@ -5,18 +5,19 @@ __Note__: These notes are specifically for a 16-core Epiphany Parallella develop

Before installing the EBSP library make sure you have set up the latest version of the Epiphany SDK, and that common developer tools (in particular gcc and make) are installed. On this page we assume that the toolchain revolves around make, but everything on this page should easily be adapted for building with e.g. and Eclipse based toolchain.

To work on a new EBSP project, first download the latest release from the [release page](https://github.com/coduin/epiphany-bsp/releases) on GitHub. The archive will contain a folder `lib/bsp` which can be copied to the root of your EBSP project. An EBSP program requires at least two source files. A program is split in a program that runs on the host (in the case of the Parallella16 the ARM processor) and a program that runs on the Epiphany-cores (usually referred to with names such as _guest_, _ecore_, _core_ or _down_). A typical project structure would then look like this:
To work on a new EBSP project, first download the latest release from the [release page](https://github.com/coduin/epiphany-bsp/releases) on GitHub. The archive will contain a folder `ext/bsp` which can be copied to the root of your EBSP project. An EBSP program requires at least two source files. A program is split in a program that runs on the host (in the case of the Parallella16 the ARM processor) and a program that runs on the Epiphany-cores (usually referred to with names such as _guest_, _ecore_, _core_ or _down_). A typical project structure would then look like this:

.../project
├── bin
├── ext
│   └── bsp
│   ├── include
│   │   ├── e_bsp.h
│   │   └── host_bsp.h
│   └── lib
│   ├── e_bsp.a
│   └── host_bsp.a
│   │ ├── include
│   │ │   ├── e_bsp.h
│   │ │   └── host_bsp.h
│   │ └── lib
│   │ ├── e_bsp.a
│   │ └── host_bsp.a
│   └── ebsp_fast.ldf
├── Makefile
└─── src
   ├── ecore_code.c
Expand Down

0 comments on commit 437c01b

Please sign in to comment.