pull/213/head
Christopher Young 2016-01-19 08:39:46 -05:00
rodzic c832f6add7
commit 8f8bd363a2
9 zmienionych plików z 76 dodań i 2 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
Copyright (c) 2015 Christopher Young.
Copyright (c) 2015-2016 Christopher Young ("Copyright Holder").
All rights reserved.
Redistribution and use in source and binary forms, with or without
@ -9,7 +9,7 @@ modification, are permitted provided that the following conditions are met:
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Christopher Young nor the
* Neither the name of the copyright holder nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.

Wyświetl plik

@ -1,3 +1,13 @@
/*
Copyright (c) 2015-2016 Christopher Young
Distributable under the terms of The "BSD New"" License
that can be found in the LICENSE file, herein included
as part of this header.
gen_gdl90.go: Input demodulated UAT and 1090ES information, output GDL90. Heartbeat,
ownship, status messages, stats collection.
*/
package main
import (

Wyświetl plik

@ -1,3 +1,12 @@
/*
Copyright (c) 2015-2016 Christopher Young
Distributable under the terms of The "BSD New"" License
that can be found in the LICENSE file, herein included
as part of this header.
managementinterface.go: Web interfaces (JSON and websocket), web server for web interface HTML.
*/
package main
import (

Wyświetl plik

@ -1,3 +1,12 @@
/*
Copyright (c) 2015-2016 Christopher Young
Distributable under the terms of The "BSD New"" License
that can be found in the LICENSE file, herein included
as part of this header.
monotonic.go: Create monotonic clock using time.Timer - necessary because of real time clock changes on RPi.
*/
package main
import (

Wyświetl plik

@ -1,3 +1,12 @@
/*
Copyright (c) 2015-2016 Christopher Young
Distributable under the terms of The "BSD New"" License
that can be found in the LICENSE file, herein included
as part of this header.
network.go: Client networking routines, DHCP lease monitoring, queue management, ICMP monitoring.
*/
package main
import (

Wyświetl plik

@ -1,3 +1,12 @@
/*
Copyright (c) 2015-2016 Christopher Young
Distributable under the terms of The "BSD New"" License
that can be found in the LICENSE file, herein included
as part of this header.
ry835ai.go: GPS functions, GPS init, AHRS status messages, other external sensor monitoring.
*/
package main
import (

Wyświetl plik

@ -1,3 +1,12 @@
/*
Copyright (c) 2015-2016 Christopher Young
Distributable under the terms of The "BSD New"" License
that can be found in the LICENSE file, herein included
as part of this header.
sdr.go: SDR monitoring, SDR management, data input from UAT/1090ES channels.
*/
package main
import (

Wyświetl plik

@ -1,3 +1,12 @@
/*
Copyright (c) 2015-2016 Christopher Young
Distributable under the terms of The "BSD New"" License
that can be found in the LICENSE file, herein included
as part of this header.
traffic.go: Target management, UAT downlink message processing, 1090ES source input, GDL90 traffic reports.
*/
package main
import (

Wyświetl plik

@ -1,3 +1,13 @@
/*
Copyright (c) 2015-2016 Christopher Young
Distributable under the terms of The "BSD New"" License
that can be found in the LICENSE file, herein included
as part of this header.
uibroadcast.go: Helper functions for managementinterface - notification channels for update "subscriptions"
(used for weather and traffic websockets).
*/
package main
import (