-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from visrealm/dev
v0.4.0
- Loading branch information
Showing
14 changed files
with
1,127 additions
and
750 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/* | ||
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd. | ||
* | ||
* SPDX-License-Identifier: BSD-3-Clause | ||
*/ | ||
|
||
// ----------------------------------------------------- | ||
// NOTE: THIS HEADER IS ALSO INCLUDED BY ASSEMBLER SO | ||
// SHOULD ONLY CONSIST OF PREPROCESSOR DIRECTIVES | ||
// ----------------------------------------------------- | ||
|
||
// This header may be included by other board headers as "boards/pico.h" | ||
|
||
#ifndef _BOARDS_PICO_H | ||
#define _BOARDS_PICO_H | ||
|
||
// For board detection | ||
#define PICO9918 | ||
|
||
#ifndef PICO_XOSC_STARTUP_DELAY_MULTIPLIER | ||
#define PICO_XOSC_STARTUP_DELAY_MULTIPLIER 32 | ||
#endif | ||
|
||
// --- UART --- | ||
#ifndef PICO_DEFAULT_UART | ||
#define PICO_DEFAULT_UART 0 | ||
#endif | ||
#ifndef PICO_DEFAULT_UART_TX_PIN | ||
#define PICO_DEFAULT_UART_TX_PIN 0 | ||
#endif | ||
#ifndef PICO_DEFAULT_UART_RX_PIN | ||
#define PICO_DEFAULT_UART_RX_PIN 1 | ||
#endif | ||
|
||
// --- LED --- | ||
#ifndef PICO_DEFAULT_LED_PIN | ||
#define PICO_DEFAULT_LED_PIN 25 | ||
#endif | ||
// no PICO_DEFAULT_WS2812_PIN | ||
|
||
// --- I2C --- | ||
#ifndef PICO_DEFAULT_I2C | ||
#define PICO_DEFAULT_I2C 0 | ||
#endif | ||
#ifndef PICO_DEFAULT_I2C_SDA_PIN | ||
#define PICO_DEFAULT_I2C_SDA_PIN 4 | ||
#endif | ||
#ifndef PICO_DEFAULT_I2C_SCL_PIN | ||
#define PICO_DEFAULT_I2C_SCL_PIN 5 | ||
#endif | ||
|
||
// --- SPI --- | ||
#ifndef PICO_DEFAULT_SPI | ||
#define PICO_DEFAULT_SPI 0 | ||
#endif | ||
#ifndef PICO_DEFAULT_SPI_SCK_PIN | ||
#define PICO_DEFAULT_SPI_SCK_PIN 18 | ||
#endif | ||
#ifndef PICO_DEFAULT_SPI_TX_PIN | ||
#define PICO_DEFAULT_SPI_TX_PIN 19 | ||
#endif | ||
#ifndef PICO_DEFAULT_SPI_RX_PIN | ||
#define PICO_DEFAULT_SPI_RX_PIN 16 | ||
#endif | ||
#ifndef PICO_DEFAULT_SPI_CSN_PIN | ||
#define PICO_DEFAULT_SPI_CSN_PIN 17 | ||
#endif | ||
|
||
// --- FLASH --- | ||
|
||
#define PICO_BOOT_STAGE2_CHOOSE_W25Q080 1 | ||
|
||
#ifndef PICO_FLASH_SPI_CLKDIV | ||
#define PICO_FLASH_SPI_CLKDIV 2 | ||
#endif | ||
|
||
#ifndef PICO_FLASH_SIZE_BYTES | ||
#define PICO_FLASH_SIZE_BYTES (2 * 1024 * 1024) | ||
#endif | ||
|
||
// Drive high to force power supply into PWM mode (lower ripple on 3V3 at light loads) | ||
#define PICO_SMPS_MODE_PIN 23 | ||
|
||
#ifndef PICO_RP2040_B0_SUPPORTED | ||
#define PICO_RP2040_B0_SUPPORTED 1 | ||
#endif | ||
|
||
// The GPIO Pin used to read VBUS to determine if the device is battery powered. | ||
#ifndef PICO_VBUS_PIN | ||
#define PICO_VBUS_PIN 24 | ||
#endif | ||
|
||
// The GPIO Pin used to monitor VSYS. Typically you would use this with ADC. | ||
// There is an example in adc/read_vsys in pico-examples. | ||
#ifndef PICO_VSYS_PIN | ||
#define PICO_VSYS_PIN 29 | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
set(PROGRAM pico9918test) | ||
cmake_minimum_required(VERSION 3.12) | ||
|
||
add_executable(${PROGRAM}) | ||
|
||
# generate image array source files from png images | ||
visrealm_generate_bindata_source(${PROGRAM} breakout res/BREAKOUT.* ) | ||
|
||
pico_generate_pio_header(${PROGRAM} ${CMAKE_CURRENT_LIST_DIR}/clocks.pio) | ||
|
||
target_sources(${PROGRAM} PRIVATE test.c font.c) | ||
|
||
pico_add_extra_outputs(${PROGRAM}) | ||
|
||
target_link_libraries(${PROGRAM} PUBLIC | ||
pico_stdlib | ||
hardware_pio) | ||
add_subdirectory(host) | ||
#add_subdirectory(qc) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
set(PROGRAM pico9918test) | ||
|
||
add_executable(${PROGRAM}) | ||
|
||
# generate image array source files from png images | ||
visrealm_generate_bindata_source(${PROGRAM} breakout res/BREAKOUT.* ) | ||
|
||
pico_generate_pio_header(${PROGRAM} ${CMAKE_CURRENT_LIST_DIR}/clocks.pio) | ||
|
||
target_sources(${PROGRAM} PRIVATE test.c font.c) | ||
|
||
pico_add_extra_outputs(${PROGRAM}) | ||
|
||
target_link_libraries(${PROGRAM} PUBLIC | ||
pico_stdlib | ||
hardware_pio) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
/* | ||
* Project: pico9918 | ||
* | ||
* Copyright (c) 2024 Troy Schrapel | ||
* | ||
* This code is licensed under the MIT license | ||
* | ||
* https://github.com/visrealm/pico9918 | ||
* | ||
*/ | ||
.program clock | ||
pull block | ||
.wrap_target | ||
set pins, 1 | ||
mov x, osr | ||
onDelay: | ||
jmp x-- onDelay | ||
set pins, 0 | ||
mov x, osr | ||
offDelay: | ||
jmp x-- offDelay | ||
.wrap | ||
% c-sdk { | ||
void clock_program_init(PIO pio, uint sm, uint offset, uint pin) { | ||
pio_gpio_init(pio, pin); | ||
pio_sm_set_consecutive_pindirs(pio, sm, pin, 1, true); | ||
pio_sm_config c = clock_program_get_default_config(offset); | ||
sm_config_set_set_pins(&c, pin, 1); | ||
pio_sm_init(pio, sm, offset, &c); | ||
} | ||
%} | ||
/* | ||
* Project: pico9918 | ||
* | ||
* Copyright (c) 2024 Troy Schrapel | ||
* | ||
* This code is licensed under the MIT license | ||
* | ||
* https://github.com/visrealm/pico9918 | ||
* | ||
*/ | ||
|
||
.program clock | ||
pull block | ||
.wrap_target | ||
set pins, 1 | ||
mov x, osr | ||
onDelay: | ||
jmp x-- onDelay | ||
set pins, 0 | ||
mov x, osr | ||
offDelay: | ||
jmp x-- offDelay | ||
.wrap | ||
|
||
|
||
% c-sdk { | ||
|
||
void clock_program_init(PIO pio, uint sm, uint offset, uint pin) { | ||
pio_gpio_init(pio, pin); | ||
pio_sm_set_consecutive_pindirs(pio, sm, pin, 1, true); | ||
pio_sm_config c = clock_program_get_default_config(offset); | ||
sm_config_set_set_pins(&c, pin, 1); | ||
pio_sm_init(pio, sm, offset, &c); | ||
} | ||
%} |
Oops, something went wrong.