Skip to content

Commit d9d9b5e

Browse files
authored
Merge pull request #198 from aaronwmorris/dev
Version 3.0 release
2 parents 175aace + 88e7808 commit d9d9b5e

23 files changed

Lines changed: 1061 additions & 203 deletions

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ indi-allsky is software used to manage a Linux-based All Sky Camera using the IN
1111
* QHY
1212
* Altair
1313
* ToupTek
14+
* Starlight Xpress
1415
* Player One Astronomy
1516
* Raspberry Pi HQ Camera
1617
* Canon DSLRs
@@ -46,6 +47,7 @@ indi-allsky is software used to manage a Linux-based All Sky Camera using the IN
4647
| Raspbian 10 (Legacy) | armhf | Indi installed from Astroberry apt repo |
4748
| Raspbian 11 32-bit | armhf | Compile indi with build_indi.sh |
4849
| Raspbian 11 64-bit | arm64 | Compile indi with build_indi.sh<br />Raspberry PI HQ camera support missing |
50+
| Armbian 22.02 | arm64/armhf | Compile indi with build_indi.sh |
4951
| Debian 11 | x86_64 | Compile indi with build_indi.sh |
5052
| Debian 10 | x86_64 | Compile indi with build_indi.sh |
5153
| Ubuntu 22.04 | arm64 | Compile indi with build_indi.sh<br />Raspberry PI HQ camera support missing |
@@ -326,8 +328,9 @@ The hardware below has at least been plugged in and tested for correct detection
326328
| QHY | QHY5LII-M | A | |
327329
| Altair | GPCAM2 290M | A | |
328330
| Touptek | G-1200-KMB | A | |
329-
| Datyson | T7C | A | Using indi_asi_ccd driver<br />Recommend ASI120MC Linux compatibility firmware |
331+
| Starlight Xpress | Superstar | A | |
330332
| Player One | Mars-C | A | |
333+
| Datyson | T7C | A | Using indi_asi_ccd driver<br />Recommend ASI120MC Linux compatibility firmware |
331334
| Raspberry Pi | HQ Camera | C | https://github.com/aaronwmorris/indi-allsky/wiki/Raspberry-PI-HQ-Camera |
332335
| Canon | 550D (Rebel T2i) | A | Camera resolution and pixel size have to be manually defined in config |
333336
| Canon | 1300D (Rebel T6) | A | Camera resolution and pixel size have to be manually defined in config |

darks.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@
6565
type=int,
6666
default=5,
6767
)
68+
argparser.add_argument(
69+
'--bitmax',
70+
'-b',
71+
help='max bits returned by camera if different than container',
72+
type=int,
73+
default=0,
74+
)
6875

6976

7077
args = argparser.parse_args()
@@ -74,6 +81,7 @@
7481
iad.count = args.count
7582
iad.temp_delta = args.temp_delta
7683
iad.time_delta = args.time_delta
84+
iad.bitmax = args.bitmax
7785

7886
action_func = getattr(iad, args.action)
7987
action_func()

html/js/js_chart.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ public function __construct() {
7272

7373
private function _dbConnect() {
7474
$conn = new PDO($this->db_uri);
75+
$conn->exec('PRAGMA journal_mode=WAL');
7576
return($conn);
7677
}
7778

html/js/js_loop.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ public function __construct() {
7474

7575
private function _dbConnect() {
7676
$conn = new PDO($this->db_uri);
77+
$conn->exec('PRAGMA journal_mode=WAL');
7778
return($conn);
7879
}
7980

0 commit comments

Comments
 (0)