Welcome to the complete codebase of the Frame hardware. For regular usage, check out the docs here.
The codebase is split into three sections. The nRF52 Application, the nRF52 Bootloader, and the FPGA RTL.
The nRF52 is designed to handle the overall system operation. It runs Lua, as well as handle Bluetooth networking, AI tasks and power management. The FPGA meanwhile, simply handles acceleration of the graphics and camera.
-
Ensure you have the ARM GCC Toolchain installed.
-
Ensure you have the nRF Command Line Tools installed.
-
Ensure you have nRF Util installed, along with the
device
andnrf5sdk-tools
subcommands../nrfutil install device ./nrfutil install nrf5sdk-tools
-
Clone this repository and initialize any submodules:
git clone https://github.com/brilliantlabsAR/frame-codebase.git cd frame-codebase git submodule update --init
-
You should now be able to build and flash the project to an nRF52840 DK by calling the following commands from the
frame-codebase
folder.make release make erase-jlink # Unlocks the flash protection if needed make flash-jlink
-
Open the project in VSCode.
There are some build tasks already configured within
.vscode/tasks.json
. Access them by pressingCtrl-Shift-P
(Cmd-Shift-P
on MacOS) →Tasks: Run Task
.Try running the
Build
task. The project should build normally.You many need to unlock the device by using the
Erase
task before programming or debugging. -
To enable IntelliSense, be sure to select the correct compiler from within VSCode.
Ctrl-Shift-P
(Cmd-Shift-P
on MacOS) →C/C++: Select IntelliSense Configuration
→Use arm-none-eabi-gcc
. -
Install the Cortex-Debug extension for VSCode in order to enable debugging.
-
A debugging launch is already configured within
.vscode/launch.json
. Run theApplication (J-Link)
launch configuration from theRun and Debug
panel, or pressF5
. The project will automatically build and flash before launching. -
To monitor the logs, run the task
RTT Console (J-Link)
and ensure theApplication (J-Link)
launch configuration is running. -
To debug using Black Magic Probes, follow the instructions here.
The complete FPGA architecture is described in the documentation here.
The FPGA RTL is prebuilt and included in fpga_application.h
for convenience. If you wish to modify the FPGA RTL, follow the instructions here.