Compare commits

..

3 commits

Author SHA1 Message Date
Nicolas Rohrbeck
5e196bbcf3 Merge branch 'master' of ssh://forge.bexus.org/Seth/seth_tools 2025-09-02 13:05:47 +02:00
Nicolas Rohrbeck
864d16fb00 generalize filename 2025-09-02 13:03:53 +02:00
Nicolas Rohrbeck
fb5dac01ca generalize filename, specialize filepath 2025-09-02 13:03:00 +02:00
2 changed files with 5 additions and 5 deletions

View file

@ -9,7 +9,7 @@
- [ ] Power on seth, on `etsolo1` you should see the start up proccess - [ ] Power on seth, on `etsolo1` you should see the start up proccess
- [ ] `set_clock()` - [ ] `set_clock()`
- [ ] Start measurement, data and msgfile to `/data/etsolo1/seth/` - [ ] Start measurement, data and msgfile to `/data/etsolo1/seth/`
- [ ] On screen 1: ```(chaos)etsolo1:~/arm/ahepam$ ./ahepamfile -f `cat seth.banana` < seth/filename.dat | tee seth/filename.AHA``` - [ ] On screen 1: ```(chaos)etsolo1:~/arm/ahepam$ ./ahepamfile -f `cat seth.banana` < /data/etsolo1/seth/2025-MM-DD.dat | tee /data/etsolo1/seth/2025-MM-DD.AHA```
- [ ] On `etfred2`: `tail -f /data/etsolo1/seth/filename.AHA | ~/seth_tools/seth_hk.py -pl` - [ ] On `etfred2`: `tail -f /data/etsolo1/seth/filename.AHA | ~/seth_tools/seth_hk.py -pl`
- [ ] Continue setting up screens 2-4 - [ ] Continue setting up screens 2-4
- [ ] `Keep_Alive()` - [ ] `Keep_Alive()`

View file

@ -1,23 +1,23 @@
# AHA file # AHA file
```(chaos)etsolo1:~/arm/ahepam$ ./ahepamfile -f `cat seth.banana` < seth/filename | tee seth/filename.AHA``` ```(chaos)etsolo1:~/arm/ahepam$ ./ahepamfile -f `cat seth.banana` < /data/etsolo1/seth/2025-MM-DD-file-num.dat | tee /data/etsolo1/seth/2025-MM-DD-file-num.AHA```
Continuously shows the contents of the .AHA file, also produces the .AHA file? Note the backticks, not single quotation marks. Continuously shows the contents of the .AHA file, also produces the .AHA file? Note the backticks, not single quotation marks.
Used programs: ahepamfile, cat, tee Used programs: ahepamfile, cat, tee
# HDORN # HDORN
```(chaos)etsolo1:~/arm/ahepam$ tail -f seth/filename.AHA | ../dorn_hk.py --seth --channels=3,4,7``` ```(chaos)etsolo1:~/arm$ tail -f /data/etsolo1/seth/2025-MM-DD-file-num.AHA | ./dorn_hk.py --seth --channels=3,4,7```
Continuously shows housekeeping information for one ADC (channel 3), one Preamp (channel 4) and the Powerboard (channel 7). Continuously shows housekeeping information for one ADC (channel 3), one Preamp (channel 4) and the Powerboard (channel 7).
Used programs: tail, dorn_hk.py Used programs: tail, dorn_hk.py
# Counter # Counter
```(chaos)etsolo1:~/arm/ahepam$ tail -f seth/filename.AHA | grep ^C``` ```(chaos)etsolo1:~/arm/ahepam$ tail -f /data/etsolo1/seth/2025-MM-DD-file-num.AHA | grep ^C```
Continuously shows the C64 lines, which are counters for the number of triggers in the last 12 seconds. BGO channels are 3, 12, 20. Continuously shows the C64 lines, which are counters for the number of triggers in the last 12 seconds. BGO channels are 3, 12, 20.
Used programs: tail, grep Used programs: tail, grep
# Messages # Messages
```(chaos)etsolo1:~/arm/ahepam$ tail -f seth/filename.msg``` ```(chaos)etsolo1:~/arm/ahepam$ tail -f /data/etsolo1/seth/2025-MM-DD-file-num.msg```
Continuously shows contents of the .msg file which should be created by calling "Start('FILENAME.dat', msgfile='FILENAME.msg')". Continuously shows contents of the .msg file which should be created by calling "Start('FILENAME.dat', msgfile='FILENAME.msg')".
Used programs: tail Used programs: tail