You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Jacob Young f6e759d28b
uncomment important code (#193)
4 months ago
.github/workflows updates for zig 0.12.0 5 months ago
bsp Fix setting pull direction in pinConfig (#189) 4 months ago
build bump versions (#192) 4 months ago
core bump versions (#192) 4 months ago
design Moves some files out of core 7 months ago
docs updates for zig 0.12.0 5 months ago
examples rp2040: add flash id function (#182) 5 months ago
for-extraction/uf2-flasher Refactors packaging process from bash to python 9 months ago
tools uncomment important code (#193) 4 months ago
website updates for zig 0.12.0 5 months ago
.envrc Refactors packaging process from bash to python 9 months ago
.gitattributes Initial vomit: not working at all, basic docs. 2 years ago
.gitignore Update microzig to work on zig master 7 months ago
LICENSE updates for zig 0.12.0 5 months ago
README.md Fix reference to design document in README (#184) 5 months ago
build.zig updates for zig 0.12.0 5 months ago
build.zig.zon bump versions (#192) 4 months ago
flake.lock Refactors packaging process from bash to python 9 months ago
flake.nix Refactors packaging process from bash to python 9 months ago

README.md

MicroZig Logo

Chat Downloads Continuous Integration

NOTE: This is in development; breaks in the API are bound to happen.

What version of Zig to use

Zig 0.12.0

Getting Started With MicroZig

I Want To Use MicroZig

IMPORTANT: You don't have to clone this repository to get started!

MicroZig uses a monorepo architecture, but provides a lot of different packages. If you just want to get started, head over to downloads.microzig.tech and download an example for the chip family you desire.

We support several chip families like the RP2 family by RaspberryPi Foundation, STM32 by STMicroelectronics, and many others.

Unpack the example, and run zig build in the resulting example folder gives you zig-out/firmware which contains the resulting files.

Right now, you gotta figure out how to flash the MCU yourself, but as people say: Google is your friend. But you can also ask for help on our Discord server.

I Want To Contribute To MicroZig

Please see the project page, its used as a place to brainstorm and organize work in ZEG. There will be issues marked as good first issue or drafts for larger ideas that need scoping/breaking ground on.

More words on contribution and development on MicroZig are further down below.

Introduction

This repo contains the infrastructure for getting started in an embedded Zig project; it "gets you to main()". Specifically, it offers:

  • a single easy-to-use builder function that:
    • generates your linker script
    • sets up packages and startup code
  • generalized interfaces for common devices, such as UART.
  • device drivers for interacting with external hardware
  • an uncomplicated method to define xref:interrupts[interrupts]

Design

For MicroZig internals please see the Design Document.

Repository structure

  • build/ contains the build components of MicroZig.
  • core/ contains the shared components of MicroZig.
  • bsp/ contains all official board support package.
  • examples/ contains examples that can be used with the board support packages.
  • tools/ contains tooling to work on MicroZig itself, so deployment, testing, ...
  • design/ contains images and logos

Versioning Scheme

MicroZig versions are tightly locked with Zig versions.

The general scheme is ${zig_version}-${commit}-${count}, so the MicroZig versions will look really similar to Zigs versions, but with our own commit abbreviations and counters.

As MicroZig sticks to tagged Zig releases, ${zig_version} will show to which Zig version the MicroZig build is compatible.

Consider the version 0.11.0-abcdef-123 means that this MicroZig version has a commit starting with abcdef, which was the 123rd commit of the version that is compatible with Zig 0.11.0.