Skip to content

Commit

Permalink
Build 177, Added support for GPS input
Browse files Browse the repository at this point in the history
  • Loading branch information
msproul committed Apr 29, 2024
1 parent 5668769 commit 35495a1
Show file tree
Hide file tree
Showing 58 changed files with 7,546 additions and 427 deletions.
477 changes: 305 additions & 172 deletions Makefile

Large diffs are not rendered by default.

227 changes: 150 additions & 77 deletions alpacapi_EditHistory.txt

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ <H1>AlpacaPi</H1>
<TH><A HREF=aavsoTargetTool.html>AAVSO</A> </TH>
</TR>
</TABLE>


</CENTER>
<!-------------------------------------------->

Expand Down Expand Up @@ -64,3 +66,23 @@ <H1>AlpacaPi</H1>
<P>
<I>AlpacaPi</I> is written in C/C++ and runs on Linux, it is open source.
<A HREF=https://github.com/msproul/AlpacaPi target=github>https://github.com/msproul/AlpacaPi</A>





<div id="google_translate_element"></div>

<script type="text/javascript">
function googleTranslateElementInit()
{
new google.translate.TranslateElement( {pageLanguage: 'en'},
'google_translate_element'
);
}
</script>

<script type="text/javascript"
src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit">
</script>

2 changes: 2 additions & 0 deletions src/JsonResponse.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ char lineBuff[64];
}
strcat(jsonHdrBUffer, "Content-type: application/json; charset=utf-8\r\n");
strcat(jsonHdrBUffer, "Server: AlpacaPi\r\n");
strcat(jsonHdrBUffer, "Access-Control-Allow-Origin: *\r\n");

// strcat(jsonHdrBUffer, "Accept: text/html,application/json\r\n");
// strcat(jsonHdrBUffer, "Accept-Language:en-US,en;q=0.8\r\n");

Expand Down
4 changes: 3 additions & 1 deletion src/alpaca_defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
//* Feb 10, 2024 <MLS> Pushed Build 174
//* Mar 22, 2024 <MLS> Build 175
//* Apr 15, 2024 <MLS> Build 176
//* Apr 29, 2024 <MLS> Build 177
//*****************************************************************************
//#include "alpaca_defs.h"

Expand All @@ -113,7 +114,7 @@

#define kApplicationName "AlpacaPi"
#define kVersionString "V0.7.2"
#define kBuildNumber 176
#define kBuildNumber 177
#define kAlpacaDiscoveryPORT 32227
#define kAlpacaPiDefaultPORT 6800

Expand Down Expand Up @@ -582,6 +583,7 @@ typedef struct // TYPE_TelescopeProperties
double IMU_Yaw;
} TYPE_TelescopeProperties;

void DumpTelescopeDriverStruct(TYPE_TelescopeProperties *telescopeDriver);

//*****************************************************************************
//* Dome properties as described by ASCOM
Expand Down
Loading

0 comments on commit 35495a1

Please sign in to comment.