KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
stm32f4-USBTMC
★ 8
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
snowboy-rpi-demo
:
通过Snowboy实现的树莓派语音助手
pytorch-FCSN
:
This is the implementation of FCSN
bitopro-api-python3
:
BitoPro Exchange API python3 implementation for automated trading
packer-terraform-aws-article
:
Example on how to use Packer and Terraform to create an AMI in AWS and provision an EC2 instance using it
sig-usability
:
[EOL] SIG-Usability related docs and code
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
stm32f4-USBTMC
?
Download (.md)
This is a usbtmc 2 channel function generator on an stm32F4 discovery board. Bandwidth and all that sort of stuff is limited, we're using the onboard DAC, but the flexibility can't be beat. Current status: * dual channel sine wave output, 1hz-20khz. (granularity is terrible above ~4kHz, but that's fixable) * Load arbitrary data and output. (lots of bugs in data bigger than usb frames) * still bugs in usb comms, need to reset the board far too often. * Some preliminary support for the L1... getting started.... ``` git submodule update --init ``` Device firmware portion ======================= ``` make -C libopencm3 make -C scpi-parser/libscpi make -C device/stm32_ocm3/stm32f4discovery (assuming openocd installed and operational) make -C device/stm32_ocm3/stm32f4discovery flash ``` See device/native-tcp-server for a host build of the core functionality. (No DAC, but all the wavetable generation and SCPI parsing code can be tested) host side ========= ``` sudo cp 68-disco-tmc.rules /etc/udev/rules.d/ sudo udevadm control --reload-rules [plug in or reset board here] virtualenv --system-site-packages .venv . .venv/bin/activate pip install -e python-usbtmc python tmcpoke.py # should toggle the red led on the board ```