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

Commit 437c01b

Browse files
author
Jan-Willem Buurlage
committed
Docs: Edit release archive information
1 parent 3312ea0 commit 437c01b

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

doc/getting_started.dox

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,19 @@ __Note__: These notes are specifically for a 16-core Epiphany Parallella develop
55

66
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.
77

8-
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:
8+
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:
99

1010
.../project
1111
├── bin
1212
├── ext
1313
│   └── bsp
14-
│   ├── include
15-
│   │   ├── e_bsp.h
16-
│   │   └── host_bsp.h
17-
│   └── lib
18-
│   ├── e_bsp.a
19-
│   └── host_bsp.a
14+
│   │ ├── include
15+
│   │ │   ├── e_bsp.h
16+
│   │ │   └── host_bsp.h
17+
│   │ └── lib
18+
│   │ ├── e_bsp.a
19+
│   │ └── host_bsp.a
20+
│   └── ebsp_fast.ldf
2021
├── Makefile
2122
└─── src
2223
   ├── ecore_code.c

0 commit comments

Comments
 (0)