Add Djinn. (#17382)

* Add Djinn.

* Review comments.

* Further cleanup.
This commit is contained in:
Nick Brassel 2022-06-20 14:20:56 +10:00 committed by GitHub
parent ad2e853611
commit aa06893b58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
43 changed files with 2145 additions and 1 deletions

View file

@ -0,0 +1,14 @@
// Copyright 2018-2022 Nick Brassel (@tzarc)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#define HAL_USE_GPT TRUE
#define HAL_USE_PWM TRUE
#define HAL_USE_SPI TRUE
#define HAL_USE_SERIAL TRUE
#define SERIAL_BUFFERS_SIZE 256
// This enables interrupt-driven mode
#define PAL_USE_WAIT TRUE
#include_next <halconf.h>