Skip to content

Commit

Permalink
README: fix some nits from R3 rewrite (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
vk2seb authored Mar 26, 2023
1 parent f309a91 commit 4dd77ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion gateware/cal/cal.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# I/O calibration utility for EURORACK-PMOD
#
# Calibration process:
# 1. Compile gateware and program FPGA with:
# 1. Compile gateware and program FPGA with these defines in `top.sv`:
# - DEBUG_UART
# - OUTPUT_CALIBRATION
# 2. Connect +/- 5V source to all INPUTS
Expand All @@ -20,6 +20,7 @@
# 11. The (calibrated) inputs are used to figure out the calibration constants for
# the (uncalibrated) outputs.
# 12. Press 'x', copy the calibration string to the cal hex file.
# 13. Be careful to switch back off the `OUTPUT_CALIBRATION` define :)
#
# Note: if you check the output calibration with a multimeter, make sure
# to add a 100K load unless you calibrate with the CAL_OPEN_LOAD option below.
Expand Down
3 changes: 2 additions & 1 deletion gateware/eurorack_pmod.sv
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
// multiple times for multiple PMODs if desired.
//
// Contains an instantiation of the I2C driver, calibration module
// and user-defined DSP core which may be swapped out.
// and CODEC driver. Calibrated samples to/from this component are
// handled by external user-defined logic.

`default_nettype none

Expand Down
4 changes: 2 additions & 2 deletions gateware/top.sv
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level module for using `eurorack-pmod` with Icebreaker FPGA.
//
// The defines below allow you to select calibration mode, spit samples out
// UART, or select one of the user-defined 'cores' (DSP modules).
// To change the DSP core which is used, modify the module type used
// by the `dsp_core_instance` entity below.

`default_nettype none

Expand Down

0 comments on commit 4dd77ff

Please sign in to comment.