Code Monkey home page Code Monkey logo

c-ninja-listings's Introduction

The code provided as part of this repository is ONLY for learning purposes!

Code Listings for "C-Ninja, in Pyjama!"

This repository contains code listings cited as examples from the book "C Ninja, in Pyjama!". There is also supporting YouTube playlist that guides through the chapters and concepts.

Watch the video Embedded Systems 101: C Ninja, in Pyjama! The right way to learn C...

Environment Setup

All the examples are based on the RISC-V CPU implementing the rv32i instruction set. To avoid having to procure/purchase new hardware, the examples are based on the QEMU emulator that emulates the intended CPU. This makes it easy to learn all the core concepts first before trying to execute them on a real hardware.

To ensure that everyone has the same development environment, we create and use a docker container. Following steps guide on setting up the right docker container locally.

1. Setup Docker Container

You would need to have Docker engine/desktop installed and running. If you don't already have it, get a copy and install it for your Operating system by following steps here: Docker.

1.1. Mac OS

Execute the following to run the setup after Docker is installed and actively running on your local machine.

bash setup.sh

1.1.1. Testing the container

Example of correctly setup environment...

Open a new terminal window. If you are using the bash shell then simply execute the following:

c-ninja

Important: If you are using some other shell, please change to the bash shell first by executing the bash command! Once you are in the bash shell is activated, execute the c-ninja command.

Once within the docker container, execute the following:

c-ninja@c-ninja-linux ~/Documents
% cd test
c-ninja@c-ninja-linux ~/Documents/test
% make

You should see prints as below:

riscv64-unknown-elf-gcc  -O0 -ggdb -nostdlib -march=rv32i -mabi=ilp32 -Wl,-Tmain.ld main.s -o main.elf
riscv64-unknown-elf-objcopy -O binary main.elf main.bin
xxd -e -c 4 -g 4 main.bin
00000000: 00100093  ....

1.2. Linux

The installation of docker is described in detail on the official Docker website: Docker installation on Linux. We cover the steps needed to enable Docker Desktop on Ubuntu Desktop.

1.2.1 Installing Docker Desktop

Installing docker Desktop on Linux is not straight forward when compared to Mac and Windows.

1.2.1.1 Update APT sources

Open a terminal and update the apt sources by executing the following commands:

# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl gnupg
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg

# Add the repository to Apt sources:
echo \
  "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
  "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update

1.2.1.2 Install Docker CLI

Install the dependencies along with docker-ce-cli.

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin curl qemu-system-x86 pass uidmap

1.2.1.3 Install Docker Desktop

Download the Docker Desktop Installer. This should download the docker-desktop-4.24.0-amd64.deb file. From the location where this file is downloaded, execute the following command to install the Docker Desktop -

sudo dpkg -i docker-desktop-4.24.0-amd64.deb

1.2.1.4 Fix the launch of Docker Desktop

sudo rm /etc/xdg/systemd/user/docker-desktop.service
systemctl --user enable docker-desktop

1.2.2 Create the Image and the Container

Ensure Docker Desktop is running and from within the directory for this current repository run the following:

bash setup.sh

This will create the image and the container.

1.2.3 Testing Installation

Open a new terminal window. If you are using the bash shell then simply execute the following:

c-ninja

1.2.3.1. Linux Host Only: Change Ownership of the directory!

Once within the docker container, you will need to change the ownership of the contents within ~/Documents/ in the container. Execute the command as shown below:

c-ninja@c-ninja-linux ~/Documents
% sudo chown -R c-ninja .

This will change the ownership of the files to the local user c-ninja within the docker container. After this you should be able to issue cd test; make as below -

c-ninja@c-ninja-linux ~/Documents
% cd test
c-ninja@c-ninja-linux ~/Documents/test
% make

This should result in prints as below, confirming that the environment is set correctly.

riscv64-unknown-elf-gcc  -O0 -ggdb -nostdlib -march=rv32i -mabi=ilp32 -Wl,-Tmain.ld main.s -o main.elf
riscv64-unknown-elf-objcopy -O binary main.elf main.bin
xxd -e -c 4 -g 4 main.bin
00000000: 00100093  ....

1.3. Windows

Execute the following to run the setup after Docker is installed and actively running on your local machine. You can either double-click this file or execute it from the cmd/power shell prompt. This command has been tested on Windows 11.

setup.bat

These commands should download the required Linux image, create a container using it, install all the required packages, create the c-ninja user, and map the current directory as the ~/Documents

1.3.1. Testing the installation

You should see a new, c-ninja.bat file generated in the current directory. You can double-click on the file to launch the terminal connected to the docker container.

2. Setup VScode

code --install-extension ms-vscode-remote.remote-containers
code --install-extension ms-vscode-remote.remote-ssh
code --install-extension ms-vscode-remote.remote-ssh-edit
code --install-extension ms-vscode.remote-explorer
code --install-extension zhwu95.riscv
code --install-extension ZixuanWang.linkerscript
  • Restart VSCode and from the Remote explorer connect to the container.

Copyright

Copyright © 2023 inpyjama.com. All Rights Reserved.

c-ninja-listings's People

Contributors

streetdogg avatar dtom7 avatar piyushthange avatar therustyengineer avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.