From f655bd3ba4385300e7d5b63af452119d481e82d2 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Sun, 16 Sep 2012 14:23:37 -0600 Subject: [PATCH] update docs --- AltOS/doc/altos.html | 168 ++++++++++----------- AltOS/doc/altos.pdf | Bin 107609 -> 107609 bytes AltOS/doc/altusmetrum.html | 228 ++++++++++++++++++----------- AltOS/doc/altusmetrum.pdf | Bin 172756 -> 174301 bytes AltOS/doc/companion.html | 16 +- AltOS/doc/companion.pdf | Bin 20018 -> 20018 bytes AltOS/doc/release-notes-1.1.1.html | 46 ++++++ AltOS/doc/telemetry.html | 36 ++--- AltOS/doc/telemetry.pdf | Bin 35358 -> 35358 bytes 9 files changed, 295 insertions(+), 199 deletions(-) create mode 100644 AltOS/doc/release-notes-1.1.1.html diff --git a/AltOS/doc/altos.html b/AltOS/doc/altos.html index fb997e0..616c7dd 100644 --- a/AltOS/doc/altos.html +++ b/AltOS/doc/altos.html @@ -1,10 +1,10 @@ -AltOS

AltOS

Altos Metrum Operating System

Keith Packard

+AltOS

AltOS

Altos Metrum Operating System

Keith Packard

This document is released under the terms of the Creative Commons ShareAlike 3.0 license. -

Revision History
Revision 0.122 November 2010
Initial content

Table of Contents

1. Overview
2. Programming the 8051 with SDCC
1. 8051 memory spaces
1.1. __data
1.2. __idata
1.3. __xdata
1.4. __pdata
1.5. __code
1.6. __bit
1.7. __sfr, __sfr16, __sfr32, __sbit
2. Function calls on the 8051
2.1. __reentrant functions
2.2. Non __reentrant functions
2.3. __interrupt functions
2.4. __critical functions and statements
3. Task functions
1. ao_add_task
2. ao_exit
3. ao_sleep
4. ao_wakeup
5. ao_alarm
6. ao_start_scheduler
7. ao_clock_init
4. Timer Functions
1. ao_time
2. ao_delay
3. ao_timer_set_adc_interval
4. ao_timer_init
5. AltOS Mutexes
1. ao_mutex_get
2. ao_mutex_put
6. CC1111 DMA engine
1. ao_dma_alloc
2. ao_dma_set_transfer
3. ao_dma_start
4. ao_dma_trigger
5. ao_dma_abort
7. SDCC Stdio interface
1. putchar
2. getchar
3. flush
4. ao_add_stdio
8. Command line interface
1. ao_cmd_register
2. ao_cmd_lex
3. ao_cmd_put16
4. ao_cmd_put8
5. ao_cmd_white
6. ao_cmd_hex
7. ao_cmd_decimal
8. ao_match_word
9. ao_cmd_init
9. CC1111 USB target device
1. ao_usb_flush
2. ao_usb_putchar
3. ao_usb_pollchar
4. ao_usb_getchar
5. ao_usb_disable
6. ao_usb_enable
7. ao_usb_init
10. CC1111 Serial peripheral
1. ao_serial_getchar
2. ao_serial_putchar
3. ao_serial_drain
4. ao_serial_set_speed
5. ao_serial_init
11. CC1111 Radio peripheral
1. ao_radio_set_telemetry
2. ao_radio_set_packet
3. ao_radio_set_rdf
4. ao_radio_idle
5. ao_radio_get
6. ao_radio_put
7. ao_radio_abort
8. ao_radio_send
9. ao_radio_recv
10. ao_radio_rdf
11. ao_packet_putchar
12. ao_packet_pollchar
13. ao_packet_slave_start
14. ao_packet_slave_stop
15. ao_packet_slave_init
16. ao_packet_master_init

Chapter 1. Overview

+

Revision History
Revision 0.122 November 2010
Initial content

Table of Contents

1. Overview
2. Programming the 8051 with SDCC
1. 8051 memory spaces
1.1. __data
1.2. __idata
1.3. __xdata
1.4. __pdata
1.5. __code
1.6. __bit
1.7. __sfr, __sfr16, __sfr32, __sbit
2. Function calls on the 8051
2.1. __reentrant functions
2.2. Non __reentrant functions
2.3. __interrupt functions
2.4. __critical functions and statements
3. Task functions
1. ao_add_task
2. ao_exit
3. ao_sleep
4. ao_wakeup
5. ao_alarm
6. ao_start_scheduler
7. ao_clock_init
4. Timer Functions
1. ao_time
2. ao_delay
3. ao_timer_set_adc_interval
4. ao_timer_init
5. AltOS Mutexes
1. ao_mutex_get
2. ao_mutex_put
6. CC1111 DMA engine
1. ao_dma_alloc
2. ao_dma_set_transfer
3. ao_dma_start
4. ao_dma_trigger
5. ao_dma_abort
7. SDCC Stdio interface
1. putchar
2. getchar
3. flush
4. ao_add_stdio
8. Command line interface
1. ao_cmd_register
2. ao_cmd_lex
3. ao_cmd_put16
4. ao_cmd_put8
5. ao_cmd_white
6. ao_cmd_hex
7. ao_cmd_decimal
8. ao_match_word
9. ao_cmd_init
9. CC1111 USB target device
1. ao_usb_flush
2. ao_usb_putchar
3. ao_usb_pollchar
4. ao_usb_getchar
5. ao_usb_disable
6. ao_usb_enable
7. ao_usb_init
10. CC1111 Serial peripheral
1. ao_serial_getchar
2. ao_serial_putchar
3. ao_serial_drain
4. ao_serial_set_speed
5. ao_serial_init
11. CC1111 Radio peripheral
1. ao_radio_set_telemetry
2. ao_radio_set_packet
3. ao_radio_set_rdf
4. ao_radio_idle
5. ao_radio_get
6. ao_radio_put
7. ao_radio_abort
8. ao_radio_send
9. ao_radio_recv
10. ao_radio_rdf
11. ao_packet_putchar
12. ao_packet_pollchar
13. ao_packet_slave_start
14. ao_packet_slave_stop
15. ao_packet_slave_init
16. ao_packet_master_init

Chapter 1. Overview

AltOS is a operating system built for the 8051-compatible processor found in the TI cc1111 microcontroller. It's designed to be small and easy to program with. The main features are: @@ -61,7 +61,7 @@

As you can see, a long sequence of subsystems are initialized and then the scheduler is started. -

Chapter 2. Programming the 8051 with SDCC

The 8051 is a primitive 8-bit processor, designed in the mists of time in as few transistors as possible. The architecture is highly irregular and includes several separate memory @@ -69,7 +69,7 @@ stack itself is of limited size. While SDCC papers over the instruction set, it is not completely able to hide the memory architecture from the application designer. -

1. 8051 memory spaces

+

1. 8051 memory spaces

The __data/__xdata/__code memory spaces below were completely separate in the original 8051 design. In the cc1111, this isn't true—they all live in a single unified 64kB address @@ -83,7 +83,7 @@ is decorated with a memory space identifier which clutters the code but makes the resulting code far smaller and more efficient. -

1.1. __data

+

1.1. __data

The 8051 can directly address these 128 bytes of memory. This makes them precious so they should be reserved for frequently addressed values. Oh, just to @@ -93,42 +93,42 @@ these registers located at 0x00 - 0x1F. AltOS uses only the first bank at 0x00 - 0x07, leaving the other 24 bytes available for other data. -

1.2. __idata

+

1.2. __idata

There are an additional 128 bytes of internal memory that share the same address space as __data but which cannot be directly addressed. The stack normally occupies this space and so AltOS doesn't place any static storage here. -

1.3. __xdata

+

1.3. __xdata

This is additional general memory accessed through a single 16-bit address register. The CC1111F32 has 32kB of memory available here. Most program data should live in this memory space. -

1.4. __pdata

+

1.4. __pdata

This is an alias for the first 256 bytes of __xdata memory, but uses a shorter addressing mode with single global 8-bit value for the high 8 bits of the address and any of several 8-bit registers for the low 8 bits. AltOS uses a few bits of this memory, it should probably use more. -

1.5. __code

+

1.5. __code

All executable code must live in this address space, but you can stick read-only data here too. It is addressed using the 16-bit address register and special 'code' access opcodes. Anything read-only should live in this space. -

1.6. __bit

+

1.6. __bit

The 8051 has 128 bits of bit-addressible memory that lives in the __data segment from 0x20 through 0x2f. Special instructions access these bits in a single atomic operation. This isn't so much a separate address space as a special addressing mode for a few bytes in the __data segment. -

1.7. __sfr, __sfr16, __sfr32, __sbit

+

1.7. __sfr, __sfr16, __sfr32, __sbit

Access to physical registers in the device use this mode which declares the variable name, it's type and the address it lives at. No memory is allocated for these variables. -

2. Function calls on the 8051

+

2. Function calls on the 8051

Because stack addressing is expensive, and stack space limited, the default function call declaration in SDCC allocates all parameters and local variables in static global @@ -136,7 +136,7 @@ non-reentrant, and also consume space for parameters and locals even when they are not running. The benefit is smaller code and faster execution. -

2.1. __reentrant functions

+

2.1. __reentrant functions

All functions which are re-entrant, either due to recursion or due to a potential context switch while executing, should be marked as __reentrant so that their parameters and local @@ -149,7 +149,7 @@ invoked can also be marked as __reentrant. The resulting code will be larger, but the savings in memory are frequently worthwhile. -

2.2. Non __reentrant functions

+

2.2. Non __reentrant functions

All parameters and locals in non-reentrant functions can have data space decoration so that they are allocated in __xdata, __pdata or __data space as desired. This can avoid @@ -161,14 +161,14 @@ non-reentrant. Because of this, interrupt handlers must not invoke any library functions, including the multiply and divide code. -

2.3. __interrupt functions

+

2.3. __interrupt functions

Interrupt functions are declared with with an __interrupt decoration that includes the interrupt number. SDCC saves and restores all of the registers in these functions and uses the 'reti' instruction at the end so that they operate as stand-alone interrupt handlers. Interrupt functions may call the ao_wakeup function to wake AltOS tasks. -

2.4. __critical functions and statements

+

2.4. __critical functions and statements

SDCC has built-in support for suspending interrupts during critical code. Functions marked as __critical will have interrupts suspended for the whole period of @@ -177,9 +177,9 @@ that statement. Keeping critical sections as short as possible is key to ensuring that interrupts are handled as quickly as possible. -

Chapter 3. Task functions

This chapter documents how to create, destroy and schedule AltOS tasks. -

1. ao_add_task

+    

1. ao_add_task

 	void
 	ao_add_task(__xdata struct ao_task * task,
 	            void (*start)(void),
@@ -190,12 +190,12 @@
 	display), and the start address. It does not switch to the
 	new task. 'start' must not ever return; there is no place
 	to return to.
-      

2. ao_exit

+      

2. ao_exit

 	void
 	ao_exit(void)
       

This terminates the current task. -

3. ao_sleep

+      

3. ao_sleep

 	void
 	ao_sleep(__xdata void *wchan)
       

@@ -215,7 +215,7 @@ __critical while (!ao_radio_done) ao_sleep(&ao_radio_done);

-

4. ao_wakeup

+      

4. ao_wakeup

 	void
 	ao_wakeup(__xdata void *wchan)
       

@@ -233,7 +233,7 @@ ao_sleep block can only be run from normal mode, and so this sequence can never be interrupted with execution of the other sequence. -

5. ao_alarm

+      

5. ao_alarm

 	void
 	ao_alarm(uint16_t delay)
       

@@ -250,13 +250,13 @@ incoming radio data. If no data is received before the timeout fires, ao_sleep will return 1 and then this code will abort the radio receive operation. -

6. ao_start_scheduler

+      

6. ao_start_scheduler

 	void
 	ao_start_scheduler(void)
       

This is called from 'main' when the system is all initialized and ready to run. It will not return. -

7. ao_clock_init

+      

7. ao_clock_init

 	void
 	ao_clock_init(void)
       

@@ -265,7 +265,7 @@ internal devices like USB. It should be called by the 'main' function first, before initializing any of the other devices in the system. -

Chapter 4. Timer Functions

+

Chapter 4. Timer Functions

AltOS sets up one of the cc1111 timers to run at 100Hz and exposes this tick as the fundemental unit of time. At each interrupt, AltOS increments the counter, and schedules any tasks @@ -273,51 +273,51 @@ collect current data readings. Doing this from the ISR ensures that the ADC values are sampled at a regular rate, independent of any scheduling jitter. -

1. ao_time

+    

1. ao_time

 	uint16_t
 	ao_time(void)
       

Returns the current system tick count. Note that this is only a 16 bit value, and so it wraps every 655.36 seconds. -

2. ao_delay

+      

2. ao_delay

 	void
 	ao_delay(uint16_t ticks);
       

Suspend the current task for at least 'ticks' clock units. -

3. ao_timer_set_adc_interval

+      

3. ao_timer_set_adc_interval

 	void
 	ao_timer_set_adc_interval(uint8_t interval);
       

This sets the number of ticks between ADC samples. If set to 0, no ADC samples are generated. AltOS uses this to slow down the ADC sampling rate to save power. -

4. ao_timer_init

+      

4. ao_timer_init

 	void
 	ao_timer_init(void)
       

This turns on the 100Hz tick using the CC1111 timer 1. It is required for any of the time-based functions to work. It should be called by 'main' before ao_start_scheduler. -

Chapter 5. AltOS Mutexes

+

Chapter 5. AltOS Mutexes

AltOS provides mutexes as a basic synchronization primitive. Each mutexes is simply a byte of memory which holds 0 when the mutex is free or the task id of the owning task when the mutex is owned. Mutex calls are checked—attempting to acquire a mutex already held by the current task or releasing a mutex not held by the current task will both cause a panic. -

1. ao_mutex_get

+    

1. ao_mutex_get

 	void
 	ao_mutex_get(__xdata uint8_t *mutex);
       

Acquires the specified mutex, blocking if the mutex is owned by another task. -

2. ao_mutex_put

+      

2. ao_mutex_put

 	void
 	ao_mutex_put(__xdata uint8_t *mutex);
       

Releases the specified mutex, waking up all tasks waiting for it. -

Chapter 6. CC1111 DMA engine

The CC1111 contains a useful bit of extra hardware in the form of five programmable DMA engines. They can be configured to copy data in memory, or between memory and devices (or even between @@ -334,7 +334,7 @@ from hardware to memory, that trigger event is supplied by the hardware device. When copying data from memory to hardware, the transfer is usually initiated by software. -

1. ao_dma_alloc

+    

1. ao_dma_alloc

 	uint8_t
 	ao_dma_alloc(__xdata uint8_t *done)
       

@@ -345,7 +345,7 @@ AO_DMA_ABORTED bit if ao_dma_abort was called. Note that it is possible to get both bits if the transfer was aborted after it had finished. -

2. ao_dma_set_transfer

+      

2. ao_dma_set_transfer

 	void
 	ao_dma_set_transfer(uint8_t id,
 	                    void __xdata *srcaddr,
@@ -359,24 +359,24 @@
 	cfg1 are values directly out of the CC1111 documentation
 	and tell the DMA engine what the transfer unit size,
 	direction and step are.
-      

3. ao_dma_start

+      

3. ao_dma_start

 	void
 	ao_dma_start(uint8_t id);
       

Arm the specified DMA engine and await a signal from either hardware or software to start transferring data. -

4. ao_dma_trigger

+      

4. ao_dma_trigger

 	void
 	ao_dma_trigger(uint8_t id)
       

Trigger the specified DMA engine to start copying data. -

5. ao_dma_abort

+      

5. ao_dma_abort

 	void
 	ao_dma_abort(uint8_t id)
       

Terminate any in-progress DMA transation, marking its 'done' variable with the AO_DMA_ABORTED bit. -

Chapter 7. SDCC Stdio interface

+

Chapter 7. SDCC Stdio interface

AltOS offers a stdio interface over both USB and the RF packet link. This provides for control of the device localy or remotely. This is hooked up to the stdio functions in SDCC by @@ -384,13 +384,13 @@ automatically multiplex the two available communication channels; output is always delivered to the channel which provided the most recent input. -

1. putchar

+    

1. putchar

 	void
 	putchar(char c)
       

Delivers a single character to the current console device. -

2. getchar

+      

2. getchar

 	char
 	getchar(void)
       

@@ -398,13 +398,13 @@ console devices. The current console device is set to that which delivered this character. This blocks until a character is available. -

3. flush

+      

3. flush

 	void
 	flush(void)
       

Flushes the current console device output buffer. Any pending characters will be delivered to the target device. - xo

4. ao_add_stdio

+      xo	  

4. ao_add_stdio

 	void
 	ao_add_stdio(char (*pollchar)(void),
 	                   void (*putchar)(char),
@@ -426,13 +426,13 @@
 	'flush' forces the output buffer to be flushed. It may
 	block until the buffer is delivered, but it is not
 	required to do so.
-      

Chapter 8. Command line interface

AltOS includes a simple command line parser which is hooked up to the stdio interfaces permitting remote control of the device over USB or the RF link as desired. Each command uses a single character to invoke it, the remaining characters on the line are available as parameters to the command. -

1. ao_cmd_register

+    

1. ao_cmd_register

 	void
 	ao_cmd_register(__code struct ao_cmds *cmds)
       

@@ -463,38 +463,38 @@ The command line is invalid for some reason other than invalid tokens.

-

2. ao_cmd_lex

+      

2. ao_cmd_lex

 	void
 	ao_cmd_lex(void);
       

This gets the next character out of the command line buffer and sticks it into ao_cmd_lex_c. At the end of the line, ao_cmd_lex_c will get a newline ('\n') character. -

3. ao_cmd_put16

+      

3. ao_cmd_put16

 	void
 	ao_cmd_put16(uint16_t v);
       

Writes 'v' as four hexadecimal characters. -

4. ao_cmd_put8

+      

4. ao_cmd_put8

 	void
 	ao_cmd_put8(uint8_t v);
       

Writes 'v' as two hexadecimal characters. -

5. ao_cmd_white

+      

5. ao_cmd_white

 	void
 	ao_cmd_white(void)
       

This skips whitespace by calling ao_cmd_lex while ao_cmd_lex_c is either a space or tab. It does not skip any characters if ao_cmd_lex_c already non-white. -

6. ao_cmd_hex

+      

6. ao_cmd_hex

 	void
 	ao_cmd_hex(void)
       

This reads a 16-bit hexadecimal value from the command line with optional leading whitespace. The resulting value is stored in ao_cmd_lex_i; -

7. ao_cmd_decimal

+      

7. ao_cmd_decimal

 	void
 	ao_cmd_decimal(void)
       

@@ -502,7 +502,7 @@ line with optional leading whitespace. The resulting value is stored in ao_cmd_lex_u32 and the low 16 bits are stored in ao_cmd_lex_i; -

8. ao_match_word

+      

8. ao_match_word

 	uint8_t
 	ao_match_word(__code char *word)
       

@@ -510,14 +510,14 @@ line. It does not skip leading white space. If 'word' is found, then 1 is returned. Otherwise, ao_cmd_status is set to ao_cmd_syntax_error and 0 is returned. -

9. ao_cmd_init

+      

9. ao_cmd_init

 	void
 	ao_cmd_init(void
       

Initializes the command system, setting up the built-in commands and adding a task to run the command processing loop. It should be called by 'main' before ao_start_scheduler. -

Chapter 9. CC1111 USB target device

The CC1111 contains a full-speed USB target device. It can be programmed to offer any kind of USB target, but to simplify interactions with a variety of operating systems, AltOS provides @@ -531,7 +531,7 @@ interface if desired, offering control of the device over the USB link. Alternatively, the functions can be accessed directly to provide for USB-specific I/O. -

1. ao_usb_flush

+    

1. ao_usb_flush

 	void
 	ao_usb_flush(void);
       

@@ -539,7 +539,7 @@ to be delivered to the USB host if there is pending data, or if the last IN packet was full to indicate to the host that there isn't any more pending data available. -

2. ao_usb_putchar

+      

2. ao_usb_putchar

 	void
 	ao_usb_putchar(char c);
       

@@ -548,7 +548,7 @@ adds a byte to the pending IN packet for delivery to the USB host. If the USB packet is full, this queues the 'IN' packet for delivery. -

3. ao_usb_pollchar

+      

3. ao_usb_pollchar

 	char
 	ao_usb_pollchar(void);
       

@@ -556,13 +556,13 @@ packet received, this returns AO_READ_AGAIN. Otherwise, it returns the next character, reporting to the host that it is ready for more data when the last character is gone. -

4. ao_usb_getchar

+      

4. ao_usb_getchar

 	char
 	ao_usb_getchar(void);
       

This uses ao_pollchar to receive the next character, blocking while ao_pollchar returns AO_READ_AGAIN. -

5. ao_usb_disable

+      

5. ao_usb_disable

 	void
 	ao_usb_disable(void);
       

@@ -577,7 +577,7 @@ after disabling the USB device, it's likely that the cable will need to be disconnected and reconnected before it will work again. -

6. ao_usb_enable

+      

6. ao_usb_enable

 	void
 	ao_usb_enable(void);
       

@@ -585,7 +585,7 @@ disabled. See the note above about needing to physically remove and re-insert the cable to get the host to re-initialize the USB link. -

7. ao_usb_init

+      

7. ao_usb_init

 	void
 	ao_usb_init(void);
       

@@ -593,7 +593,7 @@ the control end point and adds the usb I/O functions to the stdio system. Call this from main before ao_start_scheduler. -

Chapter 10. CC1111 Serial peripheral

The CC1111 provides two USART peripherals. AltOS uses one for asynch serial data, generally to communicate with a GPS device, and the other for a SPI bus. The UART is configured to operate @@ -604,25 +604,25 @@

To prevent loss of data, AltOS provides receive and transmit fifos of 32 characters each. -

1. ao_serial_getchar

+    

1. ao_serial_getchar

 	char
 	ao_serial_getchar(void);
       

Returns the next character from the receive fifo, blocking until a character is received if the fifo is empty. -

2. ao_serial_putchar

+      

2. ao_serial_putchar

 	void
 	ao_serial_putchar(char c);
       

Adds a character to the transmit fifo, blocking if the fifo is full. Starts transmitting characters. -

3. ao_serial_drain

+      

3. ao_serial_drain

 	void
 	ao_serial_drain(void);
       

Blocks until the transmit fifo is empty. Used internally when changing serial speeds. -

4. ao_serial_set_speed

+      

4. ao_serial_set_speed

 	void
 	ao_serial_set_speed(uint8_t speed);
       

@@ -630,14 +630,14 @@ AO_SERIAL_SPEED_4800, AO_SERIAL_SPEED_9600 or AO_SERIAL_SPEED_57600. This first flushes the transmit fifo using ao_serial_drain. -

5. ao_serial_init

+      

5. ao_serial_init

 	void
 	ao_serial_init(void)
       

Initializes the serial peripheral. Call this from 'main' before jumping to ao_start_scheduler. The default speed setting is AO_SERIAL_SPEED_4800. -

Chapter 11. CC1111 Radio peripheral

The CC1111 radio transceiver sends and receives digital packets with forward error correction and detection. The AltOS driver is fairly specific to the needs of the TeleMetrum and TeleDongle @@ -675,7 +675,7 @@ receiver. This is designed to provide a beacon to track the device when other location mechanisms fail.

-

1. ao_radio_set_telemetry

+    

1. ao_radio_set_telemetry

 	  void
 	  ao_radio_set_telemetry(void);
 	

@@ -684,7 +684,7 @@ other RF parameters. It does not include the base frequency or channel though. Those are set at the time of transmission or reception, in case the values are changed by the user. -

2. ao_radio_set_packet

+	

2. ao_radio_set_packet

 	  void
 	  ao_radio_set_packet(void);
 	

@@ -693,7 +693,7 @@ parameters. It does not include the base frequency or channel though. Those are set at the time of transmission or reception, in case the values are changed by the user. -

3. ao_radio_set_rdf

+	

3. ao_radio_set_rdf

 	  void
 	  ao_radio_set_rdf(void);
 	

@@ -703,26 +703,26 @@ and data whitening logic is turned off so that the resulting modulation is received as a 1kHz tone by a conventional 70cm FM audio receiver. -

4. ao_radio_idle

+	

4. ao_radio_idle

 	  void
 	  ao_radio_idle(void);
 	

Sets the radio device to idle mode, waiting until it reaches that state. This will terminate any in-progress transmit or receive operation. -

5. ao_radio_get

+	

5. ao_radio_get

 	  void
 	  ao_radio_get(void);
 	

Acquires the radio mutex and then configures the radio frequency using the global radio calibration and channel values. -

6. ao_radio_put

+	

6. ao_radio_put

 	  void
 	  ao_radio_put(void);
 	

Releases the radio mutex. -

7. ao_radio_abort

+	

7. ao_radio_abort

 	  void
 	  ao_radio_abort(void);
 	

@@ -734,7 +734,7 @@ packet. The data from receiving a packet also includes the RSSI and status values supplied by the receiver. These are added after the telemetry data. -

8. ao_radio_send

+    

8. ao_radio_send

 	  void
 	  ao_radio_send(__xdata struct ao_telemetry *telemetry);
 	

@@ -743,7 +743,7 @@ telemetry mode. This function calls ao_radio_get() before sending, and ao_radio_put() afterwards, to correctly serialize access to the radio device. -

9. ao_radio_recv

+	

9. ao_radio_recv

 	  void
 	  ao_radio_recv(__xdata struct ao_radio_recv *radio);
 	

@@ -757,7 +757,7 @@

In radio direction finding mode, there's just one function to use -

10. ao_radio_rdf

+    

10. ao_radio_rdf

 	  void
 	  ao_radio_rdf(int ms);
 	

@@ -768,7 +768,7 @@ for either master or slave mode (but not both). The basic I/O functions look the same at both ends, but the internals are different, along with the initialization steps. -

11. ao_packet_putchar

+    

11. ao_packet_putchar

 	  void
 	  ao_packet_putchar(char c);
 	

@@ -778,32 +778,32 @@ transmit a packet if the output buffer is full. On the slave side, any pending data will be sent the next time the master polls for data. -

12. ao_packet_pollchar

+	

12. ao_packet_pollchar

 	  char
 	  ao_packet_pollchar(void);
 	

This returns a pending input character if available, otherwise returns AO_READ_AGAIN. On the master side, if this empties the buffer, it triggers a poll for more data. -

13. ao_packet_slave_start

+	

13. ao_packet_slave_start

 	  void
 	  ao_packet_slave_start(void);
 	

This is available only on the slave side and starts a task to listen for packet data. -

14. ao_packet_slave_stop

+	

14. ao_packet_slave_stop

 	  void
 	  ao_packet_slave_stop(void);
 	

Disables the packet slave task, stopping the radio receiver. -

15. ao_packet_slave_init

+	

15. ao_packet_slave_init

 	  void
 	  ao_packet_slave_init(void);
 	

Adds the packet stdio functions to the stdio package so that when packet slave mode is enabled, characters will get send and received through the stdio functions. -

16. ao_packet_master_init

+	

16. ao_packet_master_init

 	  void
 	  ao_packet_master_init(void);
 	

diff --git a/AltOS/doc/altos.pdf b/AltOS/doc/altos.pdf index f1e90983188d0b67196e6fb15fbf3dab30c2e95a..62e14f3feb25c3da7b38a2af6c9fc34e22b8a215 100644 GIT binary patch delta 144 zcmcb4g6-xBwh86zW`-t42BroZ>)vy7nS~gdSQ!~unHp>^=dol&;!obin~TJ4HssrG z$j5kMs~0swfE BC6fRE delta 144 zcmcb4g6-xBwh86z#)hUQmIfvp>)vy78HX5}TA5f{8JKJ?=dol&;!obin~TJ4HssrG z$j5kMs~0sxyZ BCQ$$Y diff --git a/AltOS/doc/altusmetrum.html b/AltOS/doc/altusmetrum.html index 7757b48..745a398 100644 --- a/AltOS/doc/altusmetrum.html +++ b/AltOS/doc/altusmetrum.html @@ -1,10 +1,13 @@ -The Altus Metrum System

The Altus Metrum System

An Owner's Manual for TeleMetrum, TeleMini and TeleDongle Devices

Bdale Garbee

Keith Packard

Bob Finch

Anthony Towns

+The Altus Metrum System

The Altus Metrum System

An Owner's Manual for TeleMetrum, TeleMini and TeleDongle Devices

Bdale Garbee

Keith Packard

Bob Finch

Anthony Towns

This document is released under the terms of the Creative Commons ShareAlike 3.0 license. -

Revision History
Revision 1.113 September 2012
+

Revision History
Revision 1.1.116 September 2012
+ Updated for software version 1.1.1 Version 1.1.1 fixes a few + bugs found in version 1.1. +
Revision 1.113 September 2012
Updated for software version 1.1. Version 1.1 has new features but is otherwise compatible with version 1.0.
Revision 1.024 August 2011
@@ -16,7 +19,7 @@ Updated for software version 0.9. Note that 0.9 represents a telemetry format change, meaning both ends of a link (TeleMetrum and TeleDongle) must be updated or communications will fail. -
Revision 0.824 November 2010
Updated for software version 0.8

Acknowledgements

+
Revision 0.824 November 2010
Updated for software version 0.8

Acknowledgements

Thanks to Bob Finch, W9YA, NAR 12965, TRA 12350 for writing "The Mere-Mortals Quick Start/Usage Guide to the Altus Metrum Starter @@ -43,7 +46,7 @@ Keith NAR #88757, TRA #12200
      

-

Table of Contents

1. Introduction and Overview
2. Getting Started
3. Handling Precautions
4. Hardware Overview
5. System Operation
1. Firmware Modes
2. GPS
3. Controlling An Altimeter Over The Radio Link
4. Ground Testing
5. Radio Link
6. Configurable Parameters
6.1. Radio Frequency
6.2. Apogee Delay
6.3. Main Deployment Altitude
6.4. Maximum Flight Log
6.5. Ignite Mode
6.6. Pad Orientation
6. AltosUI
1. Monitor Flight
1.1. Launch Pad
1.2. Ascent
1.3. Descent
1.4. Landed
1.5. Site Map
2. Save Flight Data
3. Replay Flight
4. Graph Data
5. Export Data
5.1. Comma Separated Value Format
5.2. Keyhole Markup Language (for Google Earth)
6. Configure Altimeter
6.1. Main Deploy Altitude
6.2. Apogee Delay
6.3. Radio Frequency
6.4. Radio Calibration
6.5. Callsign
6.6. Maximum Flight Log Size
6.7. Ignite Mode
6.8. Pad Orientation
7. Configure AltosUI
7.1. Voice Settings
7.2. Log Directory
7.3. Callsign
7.4. Imperial Units
7.5. Font Size
7.6. Serial Debug
7.7. Manage Frequencies
8. Configure Groundstation
8.1. Frequency
8.2. Radio Calibration
9. Flash Image
10. Fire Igniter
11. Scan Channels
12. Load Maps
13. Monitor Idle
7. Using Altus Metrum Products
1. Being Legal
2. In the Rocket
3. On the Ground
4. Data Analysis
5. Future Plans
8. Altimeter Installation Recommendations
1. Mounting the Altimeter
2. Dealing with the Antenna
3. Preserving GPS Reception
4. Radio Frequency Interference
5. The Barometric Sensor
6. Ground Testing
9. Updating Device Firmware
1. Updating TeleMetrum Firmware
2. Updating TeleMini Firmware
3. Updating TeleDongle Firmware
10. Hardware Specifications
1. TeleMetrum Specifications
2. TeleMini Specifications
11. FAQ
A. Notes for Older Software
B. Calibration
1. Radio Frequency
2. TeleMetrum Accelerometer
C. Release Notes

Chapter 1. Introduction and Overview

+

Table of Contents

1. Introduction and Overview
2. Getting Started
3. Handling Precautions
4. Hardware Overview
5. System Operation
1. Firmware Modes
2. GPS
3. Controlling An Altimeter Over The Radio Link
4. Ground Testing
5. Radio Link
6. Configurable Parameters
6.1. Radio Frequency
6.2. Apogee Delay
6.3. Main Deployment Altitude
6.4. Maximum Flight Log
6.5. Ignite Mode
6.6. Pad Orientation
6. AltosUI
1. Monitor Flight
1.1. Launch Pad
1.2. Ascent
1.3. Descent
1.4. Landed
1.5. Site Map
2. Save Flight Data
3. Replay Flight
4. Graph Data
5. Export Data
5.1. Comma Separated Value Format
5.2. Keyhole Markup Language (for Google Earth)
6. Configure Altimeter
6.1. Main Deploy Altitude
6.2. Apogee Delay
6.3. Radio Frequency
6.4. Radio Calibration
6.5. Callsign
6.6. Maximum Flight Log Size
6.7. Ignite Mode
6.8. Pad Orientation
7. Configure AltosUI
7.1. Voice Settings
7.2. Log Directory
7.3. Callsign
7.4. Imperial Units
7.5. Font Size
7.6. Serial Debug
7.7. Manage Frequencies
8. Configure Groundstation
8.1. Frequency
8.2. Radio Calibration
9. Flash Image
10. Fire Igniter
11. Scan Channels
12. Load Maps
13. Monitor Idle
7. Using Altus Metrum Products
1. Being Legal
2. In the Rocket
3. On the Ground
4. Data Analysis
5. Future Plans
8. Altimeter Installation Recommendations
1. Mounting the Altimeter
2. Dealing with the Antenna
3. Preserving GPS Reception
4. Radio Frequency Interference
5. The Barometric Sensor
6. Ground Testing
9. Updating Device Firmware
1. Updating TeleMetrum Firmware
2. Updating TeleMini Firmware
3. Updating TeleDongle Firmware
10. Hardware Specifications
1. TeleMetrum Specifications
2. TeleMini Specifications
11. FAQ
A. Notes for Older Software
B. Calibration
1. Radio Frequency
2. TeleMetrum Accelerometer
C. Release Notes

Chapter 1. Introduction and Overview

Welcome to the Altus Metrum community! Our circuits and software reflect our passion for both hobby rocketry and Free Software. We hope their capabilities and performance will delight you in every way, but by @@ -72,7 +75,7 @@ NAR More products will be added to the Altus Metrum family over time, and we currently envision that this will be a single, comprehensive manual for the entire product family. -

Chapter 2. Getting Started

+

Chapter 2. Getting Started

The first thing to do after you check the inventory of parts in your "starter kit" is to charge the battery.

@@ -118,7 +121,7 @@ NAR Full source code and build instructions are also available. The latest version may always be downloaded from http://altusmetrum.org/AltOS. -

Chapter 3. Handling Precautions

+

Chapter 3. Handling Precautions

All Altus Metrum products are sophisticated electronic devices. When handled gently and properly installed in an air-frame, they will deliver impressive results. However, as with all electronic @@ -157,7 +160,7 @@ NAR As with all other rocketry electronics, Altus Metrum altimeters must be protected from exposure to corrosive motor exhaust and ejection charge gasses. -

Chapter 4. Hardware Overview

+

Chapter 4. Hardware Overview

TeleMetrum is a 1 inch by 2.75 inch circuit board. It was designed to fit inside coupler for 29mm air-frame tubing, but using it in a tube that small in diameter may require some creativity in mounting and wiring @@ -211,7 +214,7 @@ NAR connection, and, on TeleMetrum, you can unplug the integrated GPS antenna and select an appropriate off-board GPS antenna with cable terminating in a U.FL connector. -

Chapter 5. System Operation

1. Firmware Modes

+

Chapter 5. System Operation

1. Firmware Modes

The AltOS firmware build for the altimeters has two fundamental modes, "idle" and "flight". Which of these modes the firmware operates in is determined at start up time. For @@ -266,7 +269,7 @@ NAR step of a rickety step-ladder or hanging off the side of a launch tower with a screw-driver trying to turn on your avionics before installing igniters! -

2. GPS

+

2. GPS

TeleMetrum includes a complete GPS receiver. A complete explanation of how GPS works is beyond the scope of this manual, but the bottom line is that the TeleMetrum GPS receiver needs to lock onto at least @@ -284,7 +287,7 @@ NAR is turned back on, the GPS system should lock very quickly, typically long before igniter installation and return to the flight line are complete. -

3. Controlling An Altimeter Over The Radio Link

+

3. Controlling An Altimeter Over The Radio Link

One of the unique features of the Altus Metrum system is the ability to create a two way command link between TeleDongle and an altimeter using the digital radio transceivers built into @@ -352,7 +355,7 @@ NAR lights on the devices. The red LED will flash each time a packet is tramsitted, while the green LED will light up on TeleDongle when it is waiting to receive a packet from the altimeter. -

4. Ground Testing

+

4. Ground Testing

An important aspect of preparing a rocket using electronic deployment for flight is ground testing the recovery system. Thanks to the bi-directional radio link central to the Altus Metrum system, @@ -368,7 +371,7 @@ NAR manual command. You can now command the altimeter to fire the apogee or main charges from a safe distance using your computer and TeleDongle and the Fire Igniter tab to complete ejection testing. -

5. Radio Link

+

5. Radio Link

The chip our boards are based on incorporates an RF transceiver, but it's not a full duplex system... each end can only be transmitting or receiving at any given moment. So we had to decide how to manage the @@ -399,13 +402,13 @@ NAR with a 5-element yagi on the ground. We hope to fly boards to higher altitudes over time, and would of course appreciate customer feedback on performance in higher altitude flights! -

6. Configurable Parameters

+

6. Configurable Parameters

Configuring an Altus Metrum altimeter for flight is very simple. Even on our baro-only TeleMini board, the use of a Kalman filter means there is no need to set a "mach delay". The few configurable parameters can all be set using AltosUI over USB or or radio link via TeleDongle. -

6.1. Radio Frequency

+

6.1. Radio Frequency

Altus Metrum boards support radio frequencies in the 70cm band. By default, the configuration interface provides a list of 10 "standard" frequencies in 100kHz channels starting at @@ -415,7 +418,7 @@ NAR frequency will be used to avoid interference. And of course, both altimeter and TeleDongle must be configured to the same frequency to successfully communicate with each other. -

6.2. Apogee Delay

+

6.2. Apogee Delay

Apogee delay is the number of seconds after the altimeter detects flight apogee that the drogue charge should be fired. In most cases, this should be left at the default of 0. However, if you are flying @@ -431,7 +434,7 @@ NAR or 3 seconds later to avoid any chance of both charges firing simultaneously. We've flown several air-frames this way quite happily, including Keith's successful L3 cert. -

6.3. Main Deployment Altitude

+

6.3. Main Deployment Altitude

By default, the altimeter will fire the main deployment charge at an elevation of 250 meters (about 820 feet) above ground. We think this is a good elevation for most air-frames, but feel free to change this @@ -440,7 +443,7 @@ NAR deployment elevation for the backup altimeter to be something lower than the primary so that both pyrotechnic charges don't fire simultaneously. -

6.4. Maximum Flight Log

+

6.4. Maximum Flight Log

TeleMetrum version 1.1 and 1.2 have 2MB of on-board flash storage, enough to hold over 40 minutes of data at full data rate (100 samples/second). TeleMetrum 1.0 has 1MB of on-board @@ -484,7 +487,7 @@ NAR the limited storage, TeleMini cannot hold data for more than one flight, and so must be erased after each flight or it will not capture data for subsequent flights. -

6.5. Ignite Mode

+

6.5. Ignite Mode

Instead of firing one charge at apogee and another charge at a fixed height above the ground, you can configure the altimeter to fire both at apogee or both during @@ -496,7 +499,7 @@ NAR main allows some level of redundancy without needing two flight computers. In Redundant Apogee or Redundant Main mode, the two charges will be fired two seconds apart. -

6.6. Pad Orientation

+

6.6. Pad Orientation

TeleMetrum measures acceleration along the axis of the board. Which way the board is oriented affects the sign of the acceleration value. Instead of trying to guess which way @@ -506,7 +509,7 @@ NAR TeleMetrum board connected to the 70cm antenna to be nearest the nose of the rocket, with the end containing the screw terminals nearest the tail. -

Chapter 6. AltosUI

The AltosUI program provides a graphical user interface for interacting with the Altus Metrum product family, including TeleMetrum, TeleMini and TeleDongle. AltosUI can monitor telemetry data, @@ -515,7 +518,7 @@ NAR buttons, one for each major activity in the system. This manual is split into chapters, each of which documents one of the tasks provided from the top-level toolbar. -

1. Monitor Flight

Receive, Record and Display Telemetry Data

+

1. Monitor Flight

Receive, Record and Display Telemetry Data

Selecting this item brings up a dialog box listing all of the connected TeleDongle devices. When you choose one of these, AltosUI will create a window to display telemetry data as @@ -556,7 +559,7 @@ NAR data relevant to the current state of the flight. You can select other tabs at any time. The final 'table' tab displays all of the raw telemetry values in one place in a spreadsheet-like format. -

1.1. Launch Pad

+

1.1. Launch Pad

The 'Launch Pad' tab shows information used to decide when the rocket is ready for flight. The first elements include red/green indicators, if any of these is red, you'll want to evaluate @@ -605,7 +608,7 @@ NAR and altitude, averaging many reported positions to improve the accuracy of the fix.

-

1.2. Ascent

+

1.2. Ascent

This tab is shown during Boost, Fast and Coast phases. The information displayed here helps monitor the rocket as it heads towards apogee. @@ -624,7 +627,7 @@ NAR Finally, the current igniter voltages are reported as in the Launch Pad tab. This can help diagnose deployment failures caused by wiring which comes loose under high acceleration. -

1.3. Descent

+

1.3. Descent

Once the rocket has reached apogee and (we hope) activated the apogee charge, attention switches to tracking the rocket on the way back to the ground, and for dual-deploy flights, @@ -636,14 +639,16 @@ NAR components, but generally range from 15-30m/s on drogue and should be below 10m/s when under the main parachute in a dual-deploy flight.

- For TeleMetrum altimeters, you can locate the rocket in the sky - using the elevation and - bearing information to figure out where to look. Elevation is - in degrees above the horizon. Bearing is reported in degrees - relative to true north. Range can help figure out how big the - rocket will appear. Note that all of these values are relative - to the pad location. If the elevation is near 90°, the rocket - is over the pad, not over you. + For TeleMetrum altimeters, you can locate the rocket in the + sky using the elevation and bearing information to figure + out where to look. Elevation is in degrees above the + horizon. Bearing is reported in degrees relative to true + north. Range can help figure out how big the rocket will + appear. Ground Distance shows how far it is to a point + directly under the rocket and can help figure out where the + rocket is likely to land. Note that all of these values are + relative to the pad location. If the elevation is near 90°, + the rocket is over the pad, not over you.

Finally, the igniter voltages are reported in this tab as well, both to monitor the main charge as well as to see what @@ -651,7 +656,7 @@ NAR e-matches are designed to retain continuity even after being fired, and will continue to show as green or return from red to green after firing. -

1.4. Landed

+

1.4. Landed

Once the rocket is on the ground, attention switches to recovery. While the radio signal is often lost once the rocket is on the ground, the last reported GPS position is @@ -680,7 +685,7 @@ NAR To get more detailed information about the flight, you can click on the 'Graph Flight' button which will bring up a graph window for the current flight. -

1.5. Site Map

+

1.5. Site Map

When the TeleMetrum has a GPS fix, the Site Map tab will map the rocket's position to make it easier for you to locate the rocket, both while it is in the air, and when it has landed. The @@ -699,7 +704,7 @@ NAR

You can pre-load images for your favorite launch sites before you leave home; check out the 'Preload Maps' section below. -

2. Save Flight Data

+

2. Save Flight Data

The altimeter records flight data to its internal flash memory. TeleMetrum data is recorded at a much higher rate than the telemetry system can handle, and is not subject to radio drop-outs. As @@ -730,7 +735,7 @@ NAR The file name for each flight log is computed automatically from the recorded flight date, altimeter serial number and flight number information. -

3. Replay Flight

+

3. Replay Flight

Select this button and you are prompted to select a flight record file, either a .telem file recording telemetry data or a .eeprom file containing flight data saved from the altimeter @@ -739,7 +744,7 @@ NAR Once a flight record is selected, the flight monitor interface is displayed and the flight is re-enacted in real time. Check the Monitor Flight chapter above to learn how this window operates. -

4. Graph Data

+

4. Graph Data

Select this button and you are prompted to select a flight record file, either a .telem file recording telemetry data or a .eeprom file containing flight data saved from @@ -764,7 +769,7 @@ NAR Note that telemetry files will generally produce poor graphs due to the lower sampling rate and missed telemetry packets. Use saved flight data in .eeprom files for graphing where possible. -

5. Export Data

+

5. Export Data

This tool takes the raw data files and makes them available for external analysis. When you select this button, you are prompted to select a flight @@ -773,7 +778,7 @@ NAR data). Next, a second dialog appears which is used to select where to write the resulting file. It has a selector to choose between CSV and KML file formats. -

5.1. Comma Separated Value Format

+

5.1. Comma Separated Value Format

This is a text file containing the data in a form suitable for import into a spreadsheet or other external data analysis tool. The first few lines of the file contain the version and @@ -787,11 +792,11 @@ NAR the sensor values are converted to standard units, with the barometric data reported in both pressure, altitude and height above pad units. -

5.2. Keyhole Markup Language (for Google Earth)

+

5.2. Keyhole Markup Language (for Google Earth)

This is the format used by Google Earth to provide an overlay within that application. With this, you can use Google Earth to see the whole flight path in 3D. -

6. Configure Altimeter

+

6. Configure Altimeter

Select this button and then select either a TeleMetrum or TeleDongle Device from the list provided. Selecting a TeleDongle device will use the radio link to configure a remote altimeter. @@ -819,14 +824,14 @@ NAR lost.

The rest of the dialog contains the parameters to be configured. -

6.1. Main Deploy Altitude

+

6.1. Main Deploy Altitude

This sets the altitude (above the recorded pad altitude) at which the 'main' igniter will fire. The drop-down menu shows some common values, but you can edit the text directly and choose whatever you like. If the apogee charge fires below this altitude, then the main charge will fire two seconds after the apogee charge fires. -

6.2. Apogee Delay

+

6.2. Apogee Delay

When flying redundant electronics, it's often important to ensure that multiple apogee charges don't fire at precisely the same time, as that can over pressurize the apogee deployment @@ -834,13 +839,13 @@ NAR Delay parameter tells the flight computer to fire the apogee charge a certain number of seconds after apogee has been detected. -

6.3. Radio Frequency

+

6.3. Radio Frequency

This configures which of the configured frequencies to use for both telemetry and packet command mode. Note that if you set this value via packet command mode, you will have to reconfigure the TeleDongle frequency before you will be able to use packet command mode again. -

6.4. Radio Calibration

+

6.4. Radio Calibration

The radios in every Altus Metrum device are calibrated at the factory to ensure that they transmit and receive on the specified frequency. If you need to you can adjust the calibration @@ -848,15 +853,15 @@ NAR the value means, read the appendix on calibration and/or the source code for more information. To change a TeleDongle's calibration, you must reprogram the unit completely. -

6.5. Callsign

+

6.5. Callsign

This sets the call sign included in each telemetry packet. Set this as needed to conform to your local radio regulations. -

6.6. Maximum Flight Log Size

+

6.6. Maximum Flight Log Size

This sets the space (in kilobytes) allocated for each flight log. The available space will be divided into chunks of this size. A smaller value will allow more flights to be stored, a larger value will record data from longer flights. -

6.7. Ignite Mode

+

6.7. Ignite Mode

TeleMetrum and TeleMini provide two igniter channels as they were originally designed as dual-deploy flight computers. This configuration parameter allows the two @@ -876,7 +881,7 @@ NAR Altitude setting during descent. The 'apogee' channel is fired first, followed after a two second delay by the 'main' channel. -

6.8. Pad Orientation

+

6.8. Pad Orientation

Because it includes an accelerometer, TeleMetrum is sensitive to the orientation of the board. By default, it expects the antenna end to point forward. This parameter @@ -890,9 +895,9 @@ NAR Antenna Down. In this mode, the antenna end of the TeleMetrum board must point aft, in line with the expected flight path. -

7. Configure AltosUI

+

7. Configure AltosUI

This button presents a dialog so that you can configure the AltosUI global settings. -

7.1. Voice Settings

+

7.1. Voice Settings

AltosUI provides voice announcements during flight so that you can keep your eyes on the sky and still get information about the current flight status. However, sometimes you don't want @@ -901,7 +906,7 @@ NAR Test Voice—Plays a short message allowing you to verify that the audio system is working and the volume settings are reasonable -

7.2. Log Directory

+

7.2. Log Directory

AltosUI logs all telemetry data and saves all TeleMetrum flash data to this directory. This directory is also used as the staring point when selecting data files for display or export. @@ -909,36 +914,36 @@ NAR Click on the directory name to bring up a directory choosing dialog, select a new directory and click 'Select Directory' to change where AltosUI reads and writes data files. -

7.3. Callsign

+

7.3. Callsign

This value is transmitted in each command packet sent from TeleDongle and received from an altimeter. It is not used in telemetry mode, as the callsign configured in the altimeter board is included in all telemetry packets. Configure this with the AltosUI operators call sign as needed to comply with your local radio regulations. -

7.4. Imperial Units

+

7.4. Imperial Units

This switches between metric units (meters) and imperial units (feet and miles). This affects the display of values use during flight monitoring, data graphing and all of the voice announcements. It does not change the units used when exporting to CSV files, those are always produced in metric units. -

7.5. Font Size

+

7.5. Font Size

Selects the set of fonts used in the flight monitor window. Choose between the small, medium and large sets. -

7.6. Serial Debug

+

7.6. Serial Debug

This causes all communication with a connected device to be dumped to the console from which AltosUI was started. If you've started it from an icon or menu entry, the output will simply be discarded. This mode can be useful to debug various serial communication issues. -

7.7. Manage Frequencies

+

7.7. Manage Frequencies

This brings up a dialog where you can configure the set of frequencies shown in the various frequency menus. You can add as many as you like, or even reconfigure the default set. Changing this list does not affect the frequency settings of any devices, it only changes the set of frequencies shown in the menus. -

8. Configure Groundstation

+

8. Configure Groundstation

Select this button and then select a TeleDongle Device from the list provided.

The first few lines of the dialog provide information about the @@ -965,20 +970,20 @@ NAR lost.

The rest of the dialog contains the parameters to be configured. -

8.1. Frequency

+

8.1. Frequency

This configures the frequency to use for both telemetry and packet command mode. Set this before starting any operation involving packet command mode so that it will use the right frequency. Telemetry monitoring mode also provides a menu to change the frequency, and that menu also sets the same Java preference value used here. -

8.2. Radio Calibration

+

8.2. Radio Calibration

The radios in every Altus Metrum device are calibrated at the factory to ensure that they transmit and receive on the specified frequency. To change a TeleDongle's calibration, you must reprogram the unit completely, so this entry simply shows the current value and doesn't allow any changes. -

9. Flash Image

+

9. Flash Image

This reprograms any Altus Metrum device by using a TeleMetrum or TeleDongle as a programming dongle. Please read the directions for flashing devices in the Updating Device @@ -1008,7 +1013,7 @@ NAR will have to unplug it and then plug it back in for the USB connection to reset so that you can communicate with the device again. -

10. Fire Igniter

+

10. Fire Igniter

This activates the igniter circuits in TeleMetrum to help test recovery systems deployment. Because this command can operate over the Packet Command Link, you can prepare the rocket as @@ -1028,14 +1033,14 @@ NAR you have 10 seconds to press the 'Fire' button or the system will deactivate, at which point you start over again at selecting the desired igniter. -

11. Scan Channels

+

11. Scan Channels

This listens for telemetry packets on all of the configured frequencies, displaying information about each device it receives a packet from. You can select which of the three telemetry formats should be tried; by default, it only listens for the standard telemetry packets used in v1.0 and later firmware. -

12. Load Maps

+

12. Load Maps

Before heading out to a new launch site, you can use this to load satellite images in case you don't have internet connectivity at the site. This loads a fairly large area @@ -1054,16 +1059,16 @@ NAR once, so if you load more than one launch site, you may get some gray areas in the map which indicate that Google is tired of sending data to you. Try again later. -

13. Monitor Idle

+

13. Monitor Idle

This brings up a dialog similar to the Monitor Flight UI, except it works with the altimeter in "idle" mode by sending query commands to discover the current state rather than listening for telemetry packets. -

Chapter 7. Using Altus Metrum Products

1. Being Legal

+

Chapter 7. Using Altus Metrum Products

1. Being Legal

First off, in the US, you need an amateur radio license or other authorization to legally operate the radio transmitters that are part of our products. -

2. In the Rocket

+

2. In the Rocket

In the rocket itself, you just need a TeleMetrum or TeleMini board and a single-cell, 3.7 volt nominal Li-Po rechargeable battery. An @@ -1077,7 +1082,7 @@ NAR which is opaque to RF signals, you may choose to have an SMA connector installed so that you can run a coaxial cable to an antenna mounted elsewhere in the rocket. -

3. On the Ground

+

3. On the Ground

To receive the data stream from the rocket, you need an antenna and short feed-line connected to one of our TeleDongle units. The TeleDongle in turn plugs directly into the USB port on a notebook @@ -1128,7 +1133,7 @@ NAR The 440-3 and 440-5 are both good choices for finding a TeleMetrum- or TeleMini- equipped rocket when used with a suitable 70cm HT. -

4. Data Analysis

+

4. Data Analysis

Our software makes it easy to log the data from each flight, both the telemetry received during the flight itself, and the more complete data log recorded in the flash memory on the altimeter @@ -1143,7 +1148,7 @@ NAR Our ultimate goal is to emit a set of files for each flight that can be published as a web page per flight, or just viewed on your local disk with a web browser. -

5. Future Plans

+

5. Future Plans

In the future, we intend to offer "companion boards" for the rocket that will plug in to TeleMetrum to collect additional data, provide more pyro channels, and so forth. @@ -1158,14 +1163,14 @@ NAR if you have some great idea for an addition to the current Altus Metrum family, feel free to dive in and help! Or let us know what you'd like to see that we aren't already working on, and maybe we'll get excited about it too... -

Chapter 8. Altimeter Installation Recommendations

Building high-power rockets that fly safely is hard enough. Mix in some sophisticated electronics and a bunch of radio energy and oftentimes you find few perfect solutions. This chapter contains some suggestions about how to install Altus Metrum products into the rocket air-frame, including how to safely and reliably mix a variety of electronics into the same air-frame. -

1. Mounting the Altimeter

+

1. Mounting the Altimeter

The first consideration is to ensure that the altimeter is securely fastened to the air-frame. For TeleMetrum, we use nylon standoffs and nylon screws; they're good to at least 50G @@ -1182,7 +1187,7 @@ NAR Watch for any metal touching components on the board. Shorting out connections on the bottom of the board can cause the altimeter to fail during flight. -

2. Dealing with the Antenna

+

2. Dealing with the Antenna

The antenna supplied is just a piece of solid, insulated, wire. If it gets damaged or broken, it can be easily replaced. It should be kept straight and not cut; bending or @@ -1225,7 +1230,7 @@ NAR SMA connector, and then run 50Ω coax from the board to the antenna. Building a remote antenna is beyond the scope of this manual. -

3. Preserving GPS Reception

+

3. Preserving GPS Reception

The GPS antenna and receiver in TeleMetrum are highly sensitive and normally have no trouble tracking enough satellites to provide accurate position information for @@ -1244,7 +1249,7 @@ NAR antenna as that's covered with a ground plane. But, keep wires and metal out from above the patch antenna.

-

4. Radio Frequency Interference

+

4. Radio Frequency Interference

Any altimeter will generate RFI; the digital circuits use high-frequency clocks that spray radio interference across a wide band. Altus Metrum altimeters generate intentional radio @@ -1282,7 +1287,7 @@ NAR 70cm amateur band, so you should avoid lengths that are a simple ratio of that length; essentially any multiple of 1/4 of the wavelength (17.5cm). -

5. The Barometric Sensor

+

5. The Barometric Sensor

Altusmetrum altimeters measure altitude with a barometric sensor, essentially measuring the amount of air above the rocket to figure out how high it is. A large number of @@ -1300,7 +1305,7 @@ NAR chemical damage from the products of APCP or BP combustion, so make sure the ebay is carefully sealed from any compartment which contains ejection charges or motors. -

6. Ground Testing

+

6. Ground Testing

The most important aspect of any installation is careful ground testing. Bringing an air-frame up to the LCO table which hasn't been ground tested can lead to delays or ejection @@ -1322,7 +1327,7 @@ NAR interface through a TeleDongle to command each charge to fire. Make sure the charge is sufficient to robustly separate the air-frame and deploy the recovery system. -

Chapter 9. Updating Device Firmware

The big concept to understand is that you have to use a TeleDongle as a programmer to update a TeleMetrum or TeleMini, and a TeleMetrum or other TeleDongle to program the TeleDongle @@ -1338,7 +1343,7 @@ NAR version from http://www.altusmetrum.org/AltOS/.

We recommend updating the altimeter first, before updating TeleDongle. -

1. Updating TeleMetrum Firmware

  1. +

    1. Updating TeleMetrum Firmware

    1. Find the 'programming cable' that you got as part of the starter kit, that has a red 8-pin MicroMaTch connector on one end and a red 4-pin MicroMaTch connector on the other end. @@ -1381,7 +1386,7 @@ NAR the version, etc.
    2. If something goes wrong, give it another try. -

    2. Updating TeleMini Firmware

    1. +

    2. Updating TeleMini Firmware

    1. You'll need a special 'programming cable' to reprogram the TeleMini. It's available on the Altus Metrum web store, or you can make your own using an 8-pin MicroMaTch connector on @@ -1425,7 +1430,7 @@ NAR letting it come up in "flight" mode and listening for telemetry.
    2. If something goes wrong, give it another try. -

    3. Updating TeleDongle Firmware

    +

3. Updating TeleDongle Firmware

Updating TeleDongle's firmware is just like updating TeleMetrum or TeleMini firmware, but you use either a TeleMetrum or another TeleDongle as the programmer.

  1. @@ -1485,7 +1490,7 @@ NAR slightly to extract the connector. We used a locking connector on TeleMetrum to help ensure that the cabling to companion boards used in a rocket don't ever come loose accidentally in flight. -

Chapter 10. Hardware Specifications

1. TeleMetrum Specifications

  • +

Chapter 10. Hardware Specifications

1. TeleMetrum Specifications

  • Recording altimeter for model rocketry.

  • Supports dual deployment (can fire 2 ejection charges). @@ -1509,7 +1514,7 @@ NAR optional separate pyro battery if needed.

  • 2.75 x 1 inch board designed to fit inside 29mm air-frame coupler tube. -

2. TeleMini Specifications

  • +

2. TeleMini Specifications

  • Recording altimeter for model rocketry.

  • Supports dual deployment (can fire 2 ejection charges). @@ -1528,7 +1533,7 @@ NAR optional separate pyro battery if needed.

  • 1.5 x .5 inch board designed to fit inside 18mm air-frame coupler tube. -

Chapter 11. FAQ

+

Chapter 11. FAQ

TeleMetrum seems to shut off when disconnected from the computer. Make sure the battery is adequately charged. Remember the unit will pull more power than the USB port can deliver before the @@ -1568,7 +1573,7 @@ NAR data after physically retrieving your altimeter. Make sure to save the on-board data after each flight; while the TeleMetrum can store multiple flights, you never know when you'll lose the altimeter... -

Appendix A. Notes for Older Software

+

Appendix A. Notes for Older Software

Before AltosUI was written, using Altus Metrum devices required some finesse with the Linux command line. There was a limited @@ -1744,7 +1749,7 @@ NAR the Log and Device menus. It has a wonderful display of the incoming flight data and I am sure you will enjoy what it has to say to you once you enable the voice output! -

Appendix B. Calibration

+

Appendix B. Calibration

There are only two calibrations required for a TeleMetrum board, and only one for TeleDongle and TeleMini. All boards are shipped from the factory pre-calibrated, but the procedures are documented here @@ -1752,7 +1757,7 @@ NAR AltosUI, you must connect to the board with a serial terminal program and interact directly with the on-board command interpreter to effect calibration. -

1. Radio Frequency

+

1. Radio Frequency

The radio frequency is synthesized from a clock based on the 48 MHz crystal on the board. The actual frequency of this oscillator must be measured to generate a calibration constant. While our @@ -1787,7 +1792,7 @@ NAR radio frequency is reset to the default 434.550 Mhz. If you want to use another frequency, you will have to set that again after calibration is completed. -

2. TeleMetrum Accelerometer

+

2. TeleMetrum Accelerometer

The TeleMetrum accelerometer we use has its own 5 volt power supply and the output must be passed through a resistive voltage divider to match @@ -1831,7 +1836,52 @@ NAR to the index post on the 4-pin end of the programming cable, and power up the board. It should come up in 'idle mode' (two beeps), allowing a re-cal. -

Appendix C. Release Notes

+

Appendix C. Release Notes

+ Version 1.1.1 is a bug-fix release. It fixes a couple of bugs in + AltosUI and one firmware bug that affects TeleMetrum version 1.0 + boards. Thanks to Bob Brown for help diagnosing the Google Earth + file export issue, and for suggesting the addition of the Ground + Distance value in the Descent tab. +

+ AltOS Firmware Changes +

  • + TeleMetrum v1.0 boards use the AT45DB081D flash memory part to + store flight data, which is different from later TeleMetrum + boards. The AltOS v1.1 driver for this chip couldn't erase + memory, leaving it impossible to delete flight data or update + configuration values. This bug doesn't affect newer TeleMetrum + boards, and it doesn't affect the safety of rockets flying + version 1.1 firmware. +

+

+ AltosUI Changes +

  • + Creating a Google Earth file (KML) from on-board flight data + (EEPROM) would generate an empty file. The code responsible + for reading the EEPROM file wasn't ever setting the GPS valid + bits, and so the KML export code thought there was no GPS data + in the file. +
  • + The “Landed” tab was displaying all values in metric units, + even when AltosUI was configured to display imperial + units. Somehow I just missed this tab when doing the units stuff. +
  • + The “Descent” tab displays the range to the rocket, which is a + combination of the over-the-ground distance to the rockets + current latitude/longitude and the height of the rocket. As + such, it's useful for knowing how far away the rocket is, but + difficult to use when estimating where the rocket might + eventually land. A new “Ground Distance” field has been added + which displays the distance to a spot right underneath the + rocket. +
  • + Sensor data wasn't being displayed for TeleMini flight + computers in Monitor Idle mode, including things like battery + voltage. The code that picked which kinds of data to fetch + from the flight computer was missing a check for TeleMini when + deciding whether to fetch the analog sensor data. +

+

Version 1.1 is a minor release. It provides a few new features in AltosUI and the AltOS firmware and fixes bugs.

diff --git a/AltOS/doc/altusmetrum.pdf b/AltOS/doc/altusmetrum.pdf index f0e117c69053c7d3f547f2ffe5098e078fd21c33..3b69f9c76a7f1f5692757595135dc4328548d566 100644 GIT binary patch delta 34059 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 delta 32548 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 O5{_0tK;^V5?f(IgX6Qix diff --git a/AltOS/doc/companion.html b/AltOS/doc/companion.html index 096a6b2..6936953 100644 --- a/AltOS/doc/companion.html +++ b/AltOS/doc/companion.html @@ -1,10 +1,10 @@ -AltOS Companion Port

AltOS Companion Port

Protocol Definitions

Keith Packard

+AltOS Companion Port

AltOS Companion Port

Protocol Definitions

Keith Packard

This document is released under the terms of the Creative Commons ShareAlike 3.0 license. -

Revision History
Revision 0.113 January 2012
Initial content

1. Companion Port

+

Revision History
Revision 0.113 January 2012
Initial content

1. Companion Port

Many Altus Metrum products come with an eight pin Micro MaTch connector, called the Companion Port. This is often used to program devices using a programming cable. However, it can also @@ -25,7 +25,7 @@ provide a matching SPI slave implementation which supplies telemetry information for the radio downlink during flight

-

2. Companion SPI Protocol

+

2. Companion SPI Protocol

The flight computer implements a SPI master communications channel over the companion port, and uses this to get information about a connected companion board and then to get @@ -42,11 +42,11 @@

Because of the limits of the AVR processors used in the first two companion boards, the SPI data rate is set to 187.5kbaud. -

3. SPI Message Formats

+

3. SPI Message Formats

This section first defines the command message format sent from the flight computer to the companion board, and then the various reply message formats for each type of command message. -

3.1. Command Message

Table 1. Companion Command Message

OffsetData TypeNameDescription
0uint8_tcommandCommand identifier
1uint8_tflight_stateCurrent flight computer state
2uint16_ttickFlight computer clock (100 ticks/second)
4uint16_tserialFlight computer serial number
6uint16_tflightFlight number
8   

Table 2. Companion Command Identifiers

ValueNameDescription
1SETUPSupply the flight computer with companion +

3.1. Command Message

Table 1. Companion Command Message

OffsetData TypeNameDescription
0uint8_tcommandCommand identifier
1uint8_tflight_stateCurrent flight computer state
2uint16_ttickFlight computer clock (100 ticks/second)
4uint16_tserialFlight computer serial number
6uint16_tflightFlight number
8   

Table 2. Companion Command Identifiers

ValueNameDescription
1SETUPSupply the flight computer with companion information
2FETCHReturn telemetry information
3NOTIFYTell companion board when flight state changes

The flight computer will send a SETUP message shortly after @@ -74,7 +74,7 @@ use this to change data collection parameters, disabling data logging until the flight starts and terminating it when the flight ends. -

3.2. SETUP reply message

Table 3. SETUP reply contents

OffsetData TypeNameDescription
0uint16_tboard_idBoard identifier
2uint16_tboard_id_inverse~board_id—used to tell if a board is present
4uint8_tupdate_periodMinimum time (in 100Hz ticks) between FETCH commands
5uint8_tchannelsNumber of data channels to retrieve in FETCH command
6   

+

3.2. SETUP reply message

Table 3. SETUP reply contents

OffsetData TypeNameDescription
0uint16_tboard_idBoard identifier
2uint16_tboard_id_inverse~board_id—used to tell if a board is present
4uint8_tupdate_periodMinimum time (in 100Hz ticks) between FETCH commands
5uint8_tchannelsNumber of data channels to retrieve in FETCH command
6   

The SETUP reply contains enough information to uniquely identify the companion board to the end user as well as for the flight computer to know how many data values to expect in @@ -85,12 +85,12 @@ bit-wise inverse of board_id. Current companion boards use USB product ID as the board_id, but the flight computer does not interpret this data and so it can be any value. -

3.3. FETCH reply message

Table 4. FETCH reply contents

OffsetData TypeNameDescription
0uint16_tdata00th data item
2uint16_tdata11st data item
...   

+

3.3. FETCH reply message

Table 4. FETCH reply contents

OffsetData TypeNameDescription
0uint16_tdata00th data item
2uint16_tdata11st data item
...   

The FETCH reply contains arbitrary data to be reported over the flight computer telemetry link. The number of 16-bit data items must match the 'channels' value provided in the SETUP reply message. -

4. History and Motivation

+

4. History and Motivation

To allow cross-programming, the original TeleMetrum and TeleDongle designs needed to include some kind of connector. With that in place, adding the ability to connect diff --git a/AltOS/doc/companion.pdf b/AltOS/doc/companion.pdf index 37616b6647af09a8501efc4c06c0cfd70f8f5e98..d10306b1d9e705aa8c67f475124732b1fb65227a 100644 GIT binary patch delta 163 zcmdlqhjG&!#tG%@W`-t42Bu~k>)vy7nS~gdSQ!~unVM}b=dol&;!obin~TKVY{<9B zKHkvG+|}63z{1VZ#m&{t(bCk>*woC?)WpKn)zrY%$i+^)vy78HX5}TA5f{85(RZ=dol&;!obin~TKVY{<9B zKHl8P%*D*u)zs0_*wn((z}eN=+{Dqq(!$u-%*n#U$kk54hM


+ Version 1.1.1 is a bug-fix release. It fixes a couple of bugs in + AltosUI and one firmware bug that affects TeleMetrum version 1.0 + boards. Thanks to Bob Brown for help diagnosing the Google Earth + file export issue, and for suggesting the addition of the Ground + Distance value in the Descent tab. +

+ AltOS Firmware Changes +

  • + TeleMetrum v1.0 boards use the AT45DB081D flash memory part to + store flight data, which is different from later TeleMetrum + boards. The AltOS v1.1 driver for this chip couldn't erase + memory, leaving it impossible to delete flight data or update + configuration values. This bug doesn't affect newer TeleMetrum + boards, and it doesn't affect the safety of rockets flying + version 1.1 firmware. +

+

+ AltosUI Changes +

  • + Creating a Google Earth file (KML) from on-board flight data + (EEPROM) would generate an empty file. The code responsible + for reading the EEPROM file wasn't ever setting the GPS valid + bits, and so the KML export code thought there was no GPS data + in the file. +
  • + The “Landed” tab was displaying all values in metric units, + even when AltosUI was configured to display imperial + units. Somehow I just missed this tab when doing the units stuff. +
  • + The “Descent” tab displays the range to the rocket, which is a + combination of the over-the-ground distance to the rockets + current latitude/longitude and the height of the rocket. As + such, it's useful for knowing how far away the rocket is, but + difficult to use when estimating where the rocket might + eventually land. A new “Ground Distance” field has been added + which displays the distance to a spot right underneath the + rocket. +
  • + Sensor data wasn't being displayed for TeleMini flight + computers in Monitor Idle mode, including things like battery + voltage. The code that picked which kinds of data to fetch + from the flight computer was missing a check for TeleMini when + deciding whether to fetch the analog sensor data. +

+

diff --git a/AltOS/doc/telemetry.html b/AltOS/doc/telemetry.html index e1cdb01..6cabe0b 100644 --- a/AltOS/doc/telemetry.html +++ b/AltOS/doc/telemetry.html @@ -1,10 +1,10 @@ -AltOS Telemetry

AltOS Telemetry

Packet Definitions

Keith Packard

+AltOS Telemetry

AltOS Telemetry

Packet Definitions

Keith Packard

This document is released under the terms of the Creative Commons ShareAlike 3.0 license. -

Revision History
Revision 0.101 July 2011
Initial content

1. Packet Format Design

+

Revision History
Revision 0.101 July 2011
Initial content

1. Packet Format Design

AltOS telemetry data is split into multiple different packets, all the same size, but each includs an identifier so that the ground station can distinguish among different types. A single @@ -22,14 +22,14 @@ All packet types start with a five byte header which encodes the device serial number, device clock value and the packet type. The remaining 27 bytes encode type-specific data. -

2. Packet Formats

+

2. Packet Formats

This section first defines the packet header common to all packets and then the per-packet data layout. -

2.1. Packet Header

Table 1. Telemetry Packet Header

OffsetData TypeNameDescription
0uint16_tserialDevice serial Number
2uint16_ttickDevice time in 100ths of a second
4uint8_ttypePacket type
5   

+

2.1. Packet Header

Table 1. Telemetry Packet Header

OffsetData TypeNameDescription
0uint16_tserialDevice serial Number
2uint16_ttickDevice time in 100ths of a second
4uint8_ttypePacket type
5   

Each packet starts with these five bytes which serve to identify which device has transmitted the packet, when it was transmitted and what the rest of the packet contains. -

2.2. Sensor Data

TypeDescription
0x01TeleMetrum Sensor Data
0x02TeleMini Sensor Data
0x03TeleNano Sensor Data

+

2.2. Sensor Data

TypeDescription
0x01TeleMetrum Sensor Data
0x02TeleMini Sensor Data
0x03TeleNano Sensor Data

TeleMetrum, TeleMini and TeleNano share this same packet format for sensor data. Each uses a distinct packet type so that the receiver knows which data values are valid and which @@ -38,63 +38,63 @@ Sensor Data packets are transmitted once per second on the ground, 10 times per second during ascent and once per second during descent and landing -

Table 2. Sensor Packet Contents

OffsetData TypeNameDescription
5uint8_tstateFlight state
6int16_taccelaccelerometer (TM only)
8int16_tprespressure sensor
10int16_ttemptemperature sensor
12int16_tv_battbattery voltage
14int16_tsense_ddrogue continuity sense (TM/Tm)
16int16_tsense_mmain continuity sense (TM/Tm)
18int16_taccelerationm/s² * 16
20int16_tspeedm/s * 16
22int16_theightm
24int16_tground_presAverage barometer reading on ground
26int16_tground_accelTM
28int16_taccel_plus_gTM
30int16_taccel_minus_gTM
32   

2.3. Configuration Data

TypeDescription
0x04Configuration Data

+

Table 2. Sensor Packet Contents

OffsetData TypeNameDescription
5uint8_tstateFlight state
6int16_taccelaccelerometer (TM only)
8int16_tprespressure sensor
10int16_ttemptemperature sensor
12int16_tv_battbattery voltage
14int16_tsense_ddrogue continuity sense (TM/Tm)
16int16_tsense_mmain continuity sense (TM/Tm)
18int16_taccelerationm/s² * 16
20int16_tspeedm/s * 16
22int16_theightm
24int16_tground_presAverage barometer reading on ground
26int16_tground_accelTM
28int16_taccel_plus_gTM
30int16_taccel_minus_gTM
32   

2.3. Configuration Data

TypeDescription
0x04Configuration Data

This provides a description of the software installed on the flight computer as well as any user-specified configuration data.

Configuration data packets are transmitted once per second during all phases of the flight -

Table 3. Sensor Packet Contents

OffsetData TypeNameDescription
5uint8_ttypeDevice type
6uint16_tflightFlight number
8uint8_tconfig_majorConfig major version
9uint8_tconfig_minorConfig minor version
10uint16_tapogee_delayApogee deploy delay in seconds
12uint16_tmain_deployMain deploy alt in meters
14uint16_tflight_log_maxMaximum flight log size (kB)
16charcallsign[8]Radio operator identifier
24charversion[8]Software version identifier
32   

2.4. GPS Location

TypeDescription
0x05GPS Location

+

Table 3. Sensor Packet Contents

OffsetData TypeNameDescription
5uint8_ttypeDevice type
6uint16_tflightFlight number
8uint8_tconfig_majorConfig major version
9uint8_tconfig_minorConfig minor version
10uint16_tapogee_delayApogee deploy delay in seconds
12uint16_tmain_deployMain deploy alt in meters
14uint16_tflight_log_maxMaximum flight log size (kB)
16charcallsign[8]Radio operator identifier
24charversion[8]Software version identifier
32   

2.4. GPS Location

TypeDescription
0x05GPS Location

This packet provides all of the information available from the Venus SkyTraq GPS receiver—position, time, speed and precision estimates.

GPS Location packets are transmitted once per second during all phases of the flight -

Table 4. GPS Location Packet Contents

OffsetData TypeNameDescription
5uint8_tflagsSee GPS Flags table below
6int16_taltitudem
8int32_tlatitudedegrees * 107
12int32_tlongitudedegrees * 107
16uint8_tyear 
17uint8_tmonth 
18uint8_tday 
19uint8_thour 
20uint8_tminute 
21uint8_tsecond 
22uint8_tpdop* 5
23uint8_thdop* 5
24uint8_tvdop* 5
25uint8_tmodeSee GPS Mode table below
26uint16_tground_speedcm/s
28int16_tclimb_ratecm/s
30uint8_tcourse/ 2
31uint8_tunused[1] 
32   

+

Table 4. GPS Location Packet Contents

OffsetData TypeNameDescription
5uint8_tflagsSee GPS Flags table below
6int16_taltitudem
8int32_tlatitudedegrees * 107
12int32_tlongitudedegrees * 107
16uint8_tyear 
17uint8_tmonth 
18uint8_tday 
19uint8_thour 
20uint8_tminute 
21uint8_tsecond 
22uint8_tpdop* 5
23uint8_thdop* 5
24uint8_tvdop* 5
25uint8_tmodeSee GPS Mode table below
26uint16_tground_speedcm/s
28int16_tclimb_ratecm/s
30uint8_tcourse/ 2
31uint8_tunused[1] 
32   

Packed into a one byte field are status flags and the count of satellites used to compute the position fix. Note that this number may be lower than the number of satellites being tracked; the receiver will not use information from satellites with weak signals or which are close enough to the horizon to have significantly degraded position accuracy. -

Table 5. GPS Flags

BitsNameDescription
0-3nsatsNumber of satellites in solution
4validGPS solution is valid
5runningGPS receiver is operational
6date_validReported date is valid
7course_validground speed, course and climb rates are valid

+

Table 5. GPS Flags

BitsNameDescription
0-3nsatsNumber of satellites in solution
4validGPS solution is valid
5runningGPS receiver is operational
6date_validReported date is valid
7course_validground speed, course and climb rates are valid

Here are all of the valid GPS operational modes. Altus Metrum products will only ever report 'N' (not valid), 'A' (Autonomous) modes or 'E' (Estimated). The remaining modes are either testing modes or require additional data. -

Table 6. GPS Mode

ModeNameDecsription
NNot ValidAll data are invalid
AAutonomous modeData are derived from satellite data
DDifferential Mode +

Table 6. GPS Mode

ModeNameDecsription
NNot ValidAll data are invalid
AAutonomous modeData are derived from satellite data
DDifferential Mode Data are augmented with differential data from a known ground station. The SkyTraq unit in TeleMetrum does not support this mode
EEstimated Data are estimated using dead reckoning from the last known data -
MManualData were entered manually
SSimulatedGPS receiver testing mode

2.5. GPS Satellite Data

TypeDescription
0x06GPS Satellite Data

+

MManualData were entered manually
SSimulatedGPS receiver testing mode

2.5. GPS Satellite Data

TypeDescription
0x06GPS Satellite Data

This packet provides space vehicle identifiers and signal quality information in the form of a C/N1 number for up to 12 satellites. The order of the svids is not specified.

GPS Satellite data are transmitted once per second during all phases of the flight. -

Table 7. GPS Satellite Data Contents

OffsetData TypeNameDescription
5uint8_tchannelsNumber of reported satellite information
6sat_info_tsats[12]See Per-Satellite data table below
30uint8_tunused[2] 
32   

Table 8. GPS Per-Satellite data (sat_info_t)

OffsetData TypeNameDescription
0uint8_tsvidSpace Vehicle Identifier
1uint8_tc_n_1C/N1 signal quality indicator
2   

3. Data Transmission

+

Table 7. GPS Satellite Data Contents

OffsetData TypeNameDescription
5uint8_tchannelsNumber of reported satellite information
6sat_info_tsats[12]See Per-Satellite data table below
30uint8_tunused[2] 
32   

Table 8. GPS Per-Satellite data (sat_info_t)

OffsetData TypeNameDescription
0uint8_tsvidSpace Vehicle Identifier
1uint8_tc_n_1C/N1 signal quality indicator
2   

3. Data Transmission

Altus Metrum devices use the Texas Instruments CC1111 microcontroller which includes an integrated sub-GHz digital transceiver. This transceiver is used to both transmit and receive the telemetry packets. This section discusses what modulation scheme is used and how this device is configured. -

3.1. Modulation Scheme

+

3.1. Modulation Scheme

Texas Instruments provides a tool for computing modulation parameters given a desired modulation format and basic bit rate. For AltOS, the basic bit rate was specified as 38 kBaud, resulting in the following signal parmeters: -

Table 9. 

ParameterValueDescription
ModulationGFSKGaussian Frequency Shift Keying
Deviation20.507812 kHzFrequency modulation
Data rate38.360596 kBaudRaw bit rate
RX Filter Bandwidth93.75 kHzReceiver Band pass filter bandwidth
IF Frequency140.62 kHzReceiver intermediate frequency

3.2. Error Correction

+

Table 9. 

ParameterValueDescription
ModulationGFSKGaussian Frequency Shift Keying
Deviation20.507812 kHzFrequency modulation
Data rate38.360596 kBaudRaw bit rate
RX Filter Bandwidth93.75 kHzReceiver Band pass filter bandwidth
IF Frequency140.62 kHzReceiver intermediate frequency

3.2. Error Correction

The cc1111 provides forward error correction in hardware, which AltOS uses to improve reception of weak signals. The overall effect of this is to halve the available bandwidth for data from 38 kBaud to 19 kBaud. -

Table 10. 

ParameterValueDescription
Error CorrectionConvolutional coding FEC1/2 code, constraint length m=4
Interleaving4 x 4Reduce effect of noise burst
Data WhiteningXOR with 9-bit PNRRotate right with bit 8 = bit 0 xor bit 5, initial - value 111111111

4. TeleDongle packet format

+

Table 10. 

ParameterValueDescription
Error CorrectionConvolutional coding FEC1/2 code, constraint length m=4
Interleaving4 x 4Reduce effect of noise burst
Data WhiteningXOR with 9-bit PNRRotate right with bit 8 = bit 0 xor bit 5, initial + value 111111111

4. TeleDongle packet format

TeleDongle does not do any interpretation of the packet data, instead it is configured to receive packets of a specified length (32 bytes in this case). For each received packet, @@ -106,9 +106,9 @@ the packet data, two bytes added by the cc1111 radio receiver hardware and finally a checksum so that the host software can validate that the line was transmitted without any errors. -

Table 11. 

OffsetNameExampleDescription
0length22Total length of data bytes in the line. Note that +

Table 11. 

OffsetNameExampleDescription
0length22Total length of data bytes in the line. Note that this includes the added RSSI and status bytes
1 ·· length-3packet4f ·· 00Bytes of actual packet data
length-2rssi3fReceived signal strength. dBm = rssi / 2 - 74
length-1lqia9Link Quality Indicator and CRC status. Bit 7 - is set when the CRC is correct
lengthchecksum88(0x5a + sum(bytes 1 ·· length-1)) % 256

5. History and Motivation

+ is set when the CRC is correct

lengthchecksum88(0x5a + sum(bytes 1 ·· length-1)) % 256

5. History and Motivation

The original AltoOS telemetry mechanism encoded everything available piece of information on the TeleMetrum hardware into a single unified packet. Initially, the packets contained very diff --git a/AltOS/doc/telemetry.pdf b/AltOS/doc/telemetry.pdf index 938dc825b08db024044d0cad75feda06008cbd0e..1556094cfec2f993e61c5374bd89b9477023f1d9 100644 GIT binary patch delta 163 zcmbO?g=yXtrU~WjW`-t42Bsz(>)vy7nS~gdSQ!~unVM`a=dol&;!obin~TKVY{=JF z9q(vp>||tSW@+r^V&P_K;$m!MX=Lu`>|$zaVdUoKW?`pbLr_U9mz^C~aY)vy78HX5}TA5f{8CYyC=dol&;!obin~TKVY{=JF z9dGVz;OgpT;^JmzWNB$>;b!4tVrgmYXl~|WYUyZdWM-#eLr_U9mz^C~aY