Skip to content

Commit

Permalink
Merge branch 'main' into feature_ir_update
Browse files Browse the repository at this point in the history
  • Loading branch information
t-sasatani authored Nov 6, 2024
2 parents e3bba77 + 0d1b992 commit 7e0a836
Show file tree
Hide file tree
Showing 20 changed files with 65 additions and 37 deletions.
39 changes: 37 additions & 2 deletions docs/api/stream_daq.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,28 @@ A window displaying the image transferred from the Miniscope and a graph plottin
## Device configuration
A YAML file is used to configure Stream DAQ based on the device configuration. The device configuration needs to match the imaging and data capture hardware for proper operation. This file is used to set up hardware, define data formats, and set data preambles. The contents of this YAML file will be parsed into a model [miniscope_io.models.stream](../api/models/stream.md), which then configures the Stream DAQ.

### FPGA (Opal Kelly) configuration
The `bitstream` field in the device configuration yaml file specifies the image that will be uploaded to the opal kelly board. This file needs to be placed in `miniscope_io.devices`.


#### Bitstream file nomenclature
Name format of the bitstream files and directory:
`[DEVICE_DIR]/USBInterface-[CLOCK_FREQUENCY]-[INPUT_PIN]_[IO_VOLTAGE]-[ENCODING_POLARITY]`
- **DEVICE_DIR**: FPGA module name. The current package supports XEM7310-A75 (Opal kelly).
- **CLOCK_FREQUENCY**: Manchester encoding clock frequency. For the current FPGA (XEM7310-A75), this frequency can be configured to 100 / *i* MHz where *i* is an integer.
- **INPUT_PIN**: Signal input pin. `J2_2` means signal goes into second pin of J2 pin headers in the hardware module.
- **IO_VOLTAGE**: I/O voltage of the FPGA `INPUT_PIN`. The current package supports 3.3V input.
- **ENCODING_POLARITY**: Manchester encoding convention, which corresponds to bit polarity. The current package supports IEEE convention Manchester encoding.

### Example device configuration
Below is an example configuration YAML file. More examples can be found in `miniscope_io.data.config`.

```yaml
# capture device. "OK" (Opal Kelly) or "UART"
device: "OK"

# The configuration bitstream file to upload to the Opal Kelly board. This uploads a Manchester decoder HDL and different bitstream files are required to configure different data rates and bit polarity. This is a binary file synthesized using Vivado, and details for generating this file will be provided in later updates.
bitstream: "USBInterface-6mhz-3v3-INVERSE.bit"
# bitstream file to upload to Opal Kelly board
bitstream: "XEM7310-A75/USBInterface-8_33mhz-J2_2-3v3-IEEE.bit"

# COM port and baud rate is only required for UART mode
port: null
Expand All @@ -46,13 +59,35 @@ header_len: 384 # 12 * 32 (in bits)
buffer_block_length: 10
block_size: 512
num_buffers: 32
dummy_words: 10

# Flags to flip bit/byte order when recovering headers and data. See model document for details.
reverse_header_bits: True
reverse_header_bytes: True
reverse_payload_bits: True
reverse_payload_bytes: True

adc_scale:
ref_voltage: 1.1
bitdepth: 8
battery_div_factor: 5
vin_div_factor: 11.3

runtime:
serial_buffer_queue_size: 10
frame_buffer_queue_size: 5
image_buffer_queue_size: 5
csv:
buffer: 100
plot:
keys:
- timestamp
- buffer_count
- frame_buffer_count
- battery_voltage
- input_voltage
update_ms: 1000
history: 500
```
```{eval-rst}
Expand Down
2 changes: 1 addition & 1 deletion miniscope_io/data/config/WLMS_v02_200px.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
device: "OK"

# bitstream file to upload to Opal Kelly board
bitstream: "USBInterface-8mhz-3v3-INVERSE.bit"
bitstream: "XEM7310-A75/USBInterface-8_33mhz-J2_2-3v3-IEEE.bit"

# COM port and baud rate is only required for UART mode
port: null
Expand Down
29 changes: 0 additions & 29 deletions miniscope_io/data/config/example.yml

This file was deleted.

Binary file not shown.
Binary file removed miniscope_io/devices/USBInterface-6mhz-3v3-J2_2.bit
Binary file not shown.
Binary file removed miniscope_io/devices/USBInterface-6mhz-3v3-dbg.bit
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
9 changes: 9 additions & 0 deletions miniscope_io/models/stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,3 +291,12 @@ def resolve_relative(cls, value: Path) -> Path:
if not value.is_absolute():
value = DEVICE_DIR / value
return value

@field_validator("bitstream", mode="after")
def ensure_exists(cls, value: Optional[Path]) -> Optional[Path]:
"""If a bitstream file has been provided, ensure it exists"""
if isinstance(value, Path):
assert (
value.exists()
), f"Configured to use bitstream file {value}, but it does not exist"
return value
4 changes: 3 additions & 1 deletion miniscope_io/stream_daq.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ def _fpga_recv(
"""
locallogs = init_logger("streamDaq.fpga_recv")
if not HAVE_OK:
serial_buffer_queue.put(None)
raise RuntimeError(
"Couldnt import OpalKelly device. Check the docs for install instructions!"
)
Expand All @@ -307,9 +308,10 @@ def _fpga_recv(
# set up fpga devices
BIT_FILE = self.config.bitstream
if not BIT_FILE.exists():
serial_buffer_queue.put(None)
raise RuntimeError(f"Configured to use bitfile at {BIT_FILE} but no such file exists")
# set up fpga devices

# set up fpga devices
dev = self._init_okdev(BIT_FILE)

# read loop
Expand Down
2 changes: 1 addition & 1 deletion tests/data/config/preamble_hex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
device: "OK"

# bitstream file to upload to Opal Kelly board
bitstream: "USBInterface-8mhz-3v3-INVERSE.bit"
bitstream: "XEM7310-A75/USBInterface-8_33mhz-J2_2-3v3-IEEE.bit"

# COM port and baud rate is only required for UART mode
port: null
Expand Down
2 changes: 1 addition & 1 deletion tests/data/config/stream_daq_test_200px.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
device: "OK"

# bitstream file to upload to Opal Kelly board
bitstream: "USBInterface-8mhz-3v3-INVERSE.bit"
bitstream: "XEM7310-A75/USBInterface-8_33mhz-J2_2-3v3-IEEE.bit"

# Preamble for each data buffer.
preamble: 0x12345678
Expand Down
2 changes: 1 addition & 1 deletion tests/data/config/wireless_example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
device: "OK"

# bitstream file to upload to Opal Kelly board
bitstream: "USBInterface-6mhz-3v3-INVERSE.bit"
bitstream: "XEM7310-A75/USBInterface-8_33mhz-J2_2-3v3-IEEE.bit"

# COM port and baud rate rquired for UART mode
port: null
Expand Down
13 changes: 12 additions & 1 deletion tests/test_stream_daq.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import pdb
import re
from pathlib import Path

import pytest
import pandas as pd

from miniscope_io import BASE_DIR
from miniscope_io.stream_daq import StreamDevConfig, StreamDaq
from miniscope_io.utils import hash_video, hash_file
from .conftest import DATA_DIR, CONFIG_DIR
Expand Down Expand Up @@ -137,3 +139,12 @@ def test_metadata_plotting(tmp_path, default_streamdaq):
len(default_streamdaq._header_plotter.index)
== default_streamdaq.config.runtime.plot.history
)


def test_bitfile_names():
"""
Bitfile names should have no periods or whitespace in the filenames (except for the .bit extension)
"""
pattern = re.compile(r"\.(?!bit$)|\s")
for path in Path(BASE_DIR).glob("**/*.bit"):
assert not pattern.search(str(path.name))

0 comments on commit 7e0a836

Please sign in to comment.