Skip to content

Commit

Permalink
revise README and CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
elehobica committed Jun 2, 2024
1 parent d948230 commit edd857e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 12 deletions.
9 changes: 4 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.8.0] - 2024-06-02
### Added
* Calculate rotation by PIO, not PWM
* Calculate hub rotation by PIO, not PWM
* Support early stop with PIO state machine
* Support real-time counter
* Add single_pb_deck_with_rt_counter project
* Add C-120 thickness estimation in addition to C-46 (C-60), C-90 and C-100
* Support tape thickness estimation
* Support real-time counter on single_pb_deck_with_rt_counter project
* Add the schematics for EQ and NR control
### Changed
* Support pico-sdk 1.5.1 (previously 1.4.0)
Expand Down
28 changes: 21 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,9 @@ Polarity information is relative, however, L/R polarities should be aligned.

## How to build
* See ["Getting started with Raspberry Pi Pico"](https://datasheets.raspberrypi.org/pico/getting-started-with-pico.pdf)
* Put "pico-sdk", "pico-examples", "pico-extras" (and "pico-playground") on the same level with this project folder.
* Set environmental variables for PICO_SDK_PATH, PICO_EXTRAS_PATH
* Build is confirmed in Developer Command Prompt for VS 2022 and Visual Studio Code on Windows enviroment
* Confirmed with Pico SDK 1.5.1, cmake-3.27.2-windows-x86_64 and gcc-arm-none-eabi-10.3-2021.10-win32
* Put "pico-sdk", "pico-examples" and "pico-extras" on the same level with this project folder.
* Set environmental variables for PICO_SDK_PATH, PICO_EXTRAS_PATH and PICO_EXAMPLES_PATH
* Confirmed with Pico SDK 1.5.1
```
> git clone -b 1.5.1 https://github.com/raspberrypi/pico-sdk.git
> cd pico-sdk
Expand All @@ -70,14 +69,29 @@ Polarity information is relative, however, L/R polarities should be aligned.
> git clone -b sdk-1.5.1 https://github.com/raspberrypi/pico-extras.git
>
> git clone -b main https://github.com/elehobica/pico_crp42602y_ctrl.git
```
> cd pico_crp42602y_ctrl
> git submodule update -i
> cd ..
### Windows
* Build is confirmed with Developer Command Prompt for VS 2022 and Visual Studio Code on Windows environment
* Confirmed with cmake-3.27.2-windows-x86_64 and gcc-arm-none-eabi-10.3-2021.10-win32
* Lanuch "Developer Command Prompt for VS 2022"
```
> cd pico_crp42602y_ctrl
> git submodule update -i
> cd samples\xxxx
> mkdir build && cd build
> cmake -G "NMake Makefiles" ..
> nmake
```
* Put "xxxx.uf2" on RPI-RP2 drive
* Put "xxxx.uf2" on RPI-RP2 drive
### Linux
* Build is confirmed with [rp2040-dev-docker:sdk-1.5.1-1.0.1]( https://hub.docker.com/r/elehobica/rp2040-dev-docker)
* Confirmed with cmake-3.22.1 and arm-none-eabi-gcc (15:10.3-2021.07-4) 10.3.1
```
$ cd pico_crp42602y_ctrl
$ cd samples/xxxx
$ mkdir build && cd build
$ cmake ..
$ make -j4
```
* Download "xxxx.uf2" on RPI-RP2 drive

0 comments on commit edd857e

Please sign in to comment.