Search found 5 matches

by daisuketme
23 Feb 2024, 16:16
Forum: Software
Topic: Connect S with Buster not starting up after image written
Replies: 6
Views: 587

Re: Connect S with Buster not starting up after image written

Hi Daisuke, take a look at the list of compatible images - the RevPi Connect S is compatible with the Buster and Bullseye images. https://revolutionpi.com/en/tutorials/images-2?noredirect=en_US I like to use Balena Etcher to flash the devices as there is also a verification after writing so that I ...
by daisuketme
23 Feb 2024, 13:58
Forum: Software
Topic: Connect S with Buster not starting up after image written
Replies: 6
Views: 587

Re: Connect S with Buster not starting up after image written

Hi daisuketme, the Raspberry Pi images are incompatible with the Revolution Pi. Please use a Revolution Pi image. The easiest way to restore your system to factory settings is to use this checklist: Revolution Pi Checklist But if you want to clone your system then you can consult this article: RevP...
by daisuketme
23 Feb 2024, 10:17
Forum: Software
Topic: Connect S with Buster not starting up after image written
Replies: 6
Views: 587

Connect S with Buster not starting up after image written

Hello all, I recently purchased RevPi Connect S, while I used RevPi Connect+ so far. I would like to make a same environment of RevPi Connect+ for my S, with Debian Buster. I confirmed Buster is still available for S, but my Connect S has pre-installed OS of "2023-09-26-bullseye". Should b...
by daisuketme
16 Jul 2021, 09:56
Forum: RevPiModIO
Topic: RevPi AIO sampling rate for 8ms in python
Replies: 3
Views: 6318

Re: RevPi AIO sampling rate for 8ms in python

Hi Sven,

Many thanks for your prompt reply.
I forgot to change ADC_DataRate!

After changed it to higher value (160Hz, 320Hz, 640Hz Max) from the default (5Hz), the program you corrected worked well.

Thank you again for your comment :D

Best wishes
Daisuke
by daisuketme
14 Jul 2021, 10:31
Forum: RevPiModIO
Topic: RevPi AIO sampling rate for 8ms in python
Replies: 3
Views: 6318

RevPi AIO sampling rate for 8ms in python

Hello all, I purchased RevPi AIO module and want to collect +- 10V value. Data sampling should be max (8ms) according to the datasheet. So I arranged a test code in python: import datetime import revpimodio2 rpi = revpimodio2.RevPiModIO( autorefresh = True ) rpi.cycletime = 8 def test_loop( cycle_to...