Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
authorBdale Garbee <bdale@gag.com>
Wed, 26 Apr 2017 04:04:22 +0000 (22:04 -0600)
committerBdale Garbee <bdale@gag.com>
Wed, 26 Apr 2017 04:04:22 +0000 (22:04 -0600)
23 files changed:
Releasing
altosui/Makefile.am
altosui/altos-windows.nsi.in
ao-bringup/test-easymini
ao-bringup/turnon_easymini
src/Makefile
src/easymini-v2.0/.gitignore [new file with mode: 0644]
src/easymini-v2.0/Makefile [new file with mode: 0644]
src/easymini-v2.0/ao_easymini.c [new file with mode: 0644]
src/easymini-v2.0/ao_pins.h [new file with mode: 0644]
src/easymini-v2.0/flash-loader/.gitignore [new file with mode: 0644]
src/easymini-v2.0/flash-loader/Makefile [new file with mode: 0644]
src/easymini-v2.0/flash-loader/ao_pins.h [new file with mode: 0644]
src/nucleao-32/Makefile
src/nucleao-32/ao_lisp_os.h [new file with mode: 0644]
src/nucleao-32/ao_lisp_os_save.c [new file with mode: 0644]
src/nucleao-32/load.ld [new file with mode: 0644]
src/stmf0/ao_beep_stm.c
src/telegps-v2.0/.gitignore [new file with mode: 0644]
src/telegps-v2.0/flash-loader/.gitignore [new file with mode: 0644]
src/telemini-v3.0/ao_pins.h
src/telemini-v3.0/ao_telemini.c
src/test/.gitignore

index da4f46f8d1762e14fb3a21f8187c405d8f674c5c..b3690d3690b2d855be50a64595fa63be7f61d368 100644 (file)
--- a/Releasing
+++ b/Releasing
@@ -1,3 +1,12 @@
+Adding a product to the release
+
+       Make sure the firmware and loader get built by default in
+       src/Makefile
+
+       Add the firmware to altosui/Makefile.am
+
+       Add the firmware to altosui/altos-windows.nsi.in
+
 These are Bdale's notes on how to do a release.
 
        - make sure build environment is up to date
@@ -69,25 +78,29 @@ These are Bdale's notes on how to do a release.
                this pushes packages for each platform to web site
 
        # store a stable copy of ARM binaries for production use
-       cp src/easymega-v1.0/*.elf \
-          src/easymini-v1.0/*.elf \
-          src/telebt-v3.0/*.elf \
-          src/teledongle-v3.0/*.elf \
-          src/telegps-v1.0/*.elf \
-          src/telemega-v1.0/*.elf \
-          src/telemega-v2.0/*.elf \
-          src/telemetrum-v2.0/*.elf \
-          src/telemini-v3.0/*.elf \
+       cp src/chaoskey-v1.0/{*.elf,*.ihx} \
+          src/easymega-v1.0/{*.elf,*.ihx} \
+          src/easymini-v1.0/{*.elf,*.ihx} \
+          src/easymini-v2.0/{*.elf,*.ihx} \
+          src/telebt-v3.0/{*.elf,*.ihx} \
+          src/teledongle-v3.0/{*.elf,*.ihx} \
+          src/telegps-v1.0/{*.elf,*.ihx} \
+          src/telemega-v1.0/{*.elf,*.ihx} \
+          src/telemega-v2.0/{*.elf,*.ihx} \
+          src/telemetrum-v2.0/{*.elf,*.ihx} \
+          src/telemini-v3.0/{*.elf,*.ihx} \
           ~/altusmetrumllc/Binaries/
-       cp src/easymega-v1.0/flash-loader/*.elf \
+       cp src/chaoskey-v1.0/flash-loader/{*.elf,*.bin} \
+          src/easymega-v1.0/flash-loader/*.elf \
           src/easymini-v1.0/flash-loader/*.elf \
+          src/easymini-v2.0/flash-loader/{*.elf,*.bin} \
           src/telebt-v3.0/flash-loader/*.elf \
           src/teledongle-v3.0/flash-loader/*.elf \
           src/telegps-v1.0/flash-loader/*.elf \
           src/telemega-v1.0/flash-loader/*.elf \
           src/telemega-v2.0/flash-loader/*.elf \
           src/telemetrum-v2.0/flash-loader/*.elf \
-          src/telemini-v3.0/flash-loader/*.elf \
+          src/telemini-v3.0/flash-loader/{*.elf,*.bin} \
           ~/altusmetrumllc/Binaries/loaders/
        (cd ~/altusmetrumllc ; git add Binaries ; git commit -a) 
        (cd ~/altusmetrumllc ; git push) 
index de3dee686c8a278bcc071a200a6f39744c9c7a2e..df022c40e8eb279be6c9a8aab7cbfbbb51078a30 100644 (file)
@@ -131,7 +131,8 @@ FIRMWARE_TM_2_0=$(top_srcdir)/src/telemetrum-v2.0/telemetrum-v2.0-$(VERSION).ihx
 FIRMWARE_TM=$(FIRMWARE_TM_1_0) $(FIRMWARE_TM_1_1) $(FIRMWARE_TM_1_2) $(FIRMWARE_TM_2_0)
 
 FIRMWARE_TELEMINI_1_0=$(top_srcdir)/src/telemini-v1.0/telemini-v1.0-$(VERSION).ihx
-FIRMWARE_TELEMINI=$(FIRMWARE_TELEMINI_1_0)
+FIRMWARE_TELEMINI_3_0=$(top_srcdir)/src/telemini-v3.0/telemini-v3.0-$(VERSION).ihx
+FIRMWARE_TELEMINI=$(FIRMWARE_TELEMINI_1_0) $(FIRMWARE_TELEMINI_3_0)
 
 FIRMWARE_TBT_1_0=$(top_srcdir)/src/telebt-v1.0/telebt-v1.0-$(VERSION).ihx
 FIRMWARE_TBT_3_0=$(top_srcdir)/src/telebt-v3.0/telebt-v3.0-$(VERSION).ihx
index 1039bd41d7552cb6d3fadf3631794d36c961448a..ce1a2d6c4d319d848c3a3cced14cebc76ca40627 100644 (file)
@@ -126,6 +126,7 @@ Section "Firmware"
        File "../src/telemetrum-v2.0/telemetrum-v2.0-${VERSION}.ihx"
 ;      File "../src/telemetrum-v3.0/telemetrum-v3.0-${VERSION}.ihx"
        File "../src/telemini-v1.0/telemini-v1.0-${VERSION}.ihx"
+       File "../src/telemini-v3.0/telemini-v3.0-${VERSION}.ihx"
        File "../src/telegps-v1.0/telegps-v1.0-${VERSION}.ihx"
        File "../src/teledongle-v0.2/teledongle-v0.2-${VERSION}.ihx"
        File "../src/teledongle-v3.0/teledongle-v3.0-${VERSION}.ihx"
@@ -134,6 +135,7 @@ Section "Firmware"
        File "../src/telemega-v1.0/telemega-v1.0-${VERSION}.ihx"
        File "../src/telemega-v2.0/telemega-v2.0-${VERSION}.ihx"
        File "../src/easymini-v1.0/easymini-v1.0-${VERSION}.ihx"
+       File "../src/easymini-v2.0/easymini-v2.0-${VERSION}.ihx"
        File "../src/easymega-v1.0/easymega-v1.0-${VERSION}.ihx"
 
 SectionEnd
index e9948da90d4607aa90c8710cac6269007b59dc47..7850b5502edad62fe6ff443acf8e8488592cd0e9 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-VERSION=1.0
+VERSION=2.0
 PRODUCT=EasyMini
 BASE=`echo $PRODUCT | tr 'A-Z' 'a-z'`
 
index 4580790a80eb919b4a799147ed86b78e96ae12ad..9b66dc5ec25e5c333a3d40765af652900d10d443 100755 (executable)
@@ -1,12 +1,10 @@
 #!/bin/sh
 
-if [ -x ../ao-tools/ao-flash/ao-flash-lpc ]; then
-       FLASH_LPC=../ao-tools/ao-flash/ao-flash-lpc
-elif [ -x /usr/bin/ao-flash-lpc ]; then
-       FLASH_LPC=/usr/bin/ao-flash-lpc
+if [ -x /usr/bin/dfu-util ]; then
+    DFU_UTIL=/usr/bin/dfu-util
 else
-       echo "Can't find ao-flash-lpc!  Aborting."
-       exit 1
+    echo "Can't find dfu-util! Aborting."
+    exit 1
 fi
 
 if [ -x ../ao-tools/ao-usbload/ao-usbload ]; then
@@ -18,17 +16,16 @@ else
        exit 1
 fi
 
-VERSION=1.0
+VERSION=2.0
 PRODUCT=EasyMini
 BASE=`echo $PRODUCT | tr 'A-Z' 'a-z'`
 echo $FILE
 
 echo "$PRODUCT v$VERSION Turn-On and Calibration Program"
-echo "Copyright 2010 by Bdale Garbee.  Released under GPL v2"
+echo "Copyright 2010 by Bdale Garbee.  Released under GPL v2+"
 echo
 echo "Expectations:"
-echo "\t$PRODUCT v$VERSION powered from USB"
-echo "\t\twith ST-Link-V2 cabled to debug header"
+echo "\t$PRODUCT v$VERSION powered and connected to USB"
 echo
 
 case $# in
@@ -49,17 +46,17 @@ esac
 #
 # Use released versions of everything
 #
-FLASH_FILE=~/altusmetrumllc/Binaries/loaders/easymini-v1.0-altos-flash-*.elf
-ALTOS_FILE=~/altusmetrumllc/Binaries/easymini-v1.0-*.elf
+FLASH_FILE=~/altusmetrumllc/Binaries/loaders/easymini-v2.0-altos-flash-*.bin
+ALTOS_FILE=~/altusmetrumllc/Binaries/easymini-v2.0-*.elf
 
 #FLASH_FILE=../src/$BASE-v$VERSION/flash-loader/$BASE-v$VERSION-altos-flash-*.elf
 #ALTOS_FILE=../src/$BASE-v$VERSION/*.ihx
 
-echo $FLASH_LPC $FLASH_FILE
+echo $DFU_UTIL -a 0 -s 0x08000000:leave -D $FLASH_FILE
 
-$FLASH_LPC $FLASH_FILE || exit 1
+#$DFU_UTIL -a 0 -s 0x08000000:leave -D $FLASH_FILE || exit 1
 
-sleep 1
+sleep 2
 
 echo $USBLOAD $ALTOS_FILE
 
index 5bc0a7a04ac714710ae0ac0f603f8e3e6365ff85..26e1608797c8b87bd6b7f9e31ec6efc014fa1525 100644 (file)
@@ -47,7 +47,9 @@ ARMM3DIRS=\
 ARMM0DIRS=\
        easymini-v1.0 easymini-v1.0/flash-loader \
        chaoskey-v0.1 chaoskey-v0.1/flash-loader \
-       chaoskey-v1.0 chaoskey-v1.0/flash-loader
+       chaoskey-v1.0 chaoskey-v1.0/flash-loader \
+       telemini-v3.0 telemini-v3.0/flash-loader \
+       easymini-v2.0 easymini-v2.0/flash-loader
 
 AVRDIRS=\
        telescience-v0.1 telescience-pwm micropeak nanopeak-v0.1 microkite
diff --git a/src/easymini-v2.0/.gitignore b/src/easymini-v2.0/.gitignore
new file mode 100644 (file)
index 0000000..e5f7d58
--- /dev/null
@@ -0,0 +1,2 @@
+ao_product.h
+*.elf
diff --git a/src/easymini-v2.0/Makefile b/src/easymini-v2.0/Makefile
new file mode 100644 (file)
index 0000000..9b4cc6d
--- /dev/null
@@ -0,0 +1,83 @@
+#
+# AltOS build
+#
+#
+
+include ../stmf0/Makefile.defs
+
+INC = \
+       ao.h \
+       ao_arch.h \
+       ao_arch_funcs.h \
+       ao_pins.h \
+       ao_product.h \
+       stm32f0.h
+
+#
+# Common AltOS sources
+#
+
+ALTOS_SRC = \
+       ao_interrupt.c \
+       ao_boot_chain.c \
+       ao_romconfig.c \
+       ao_product.c \
+       ao_mutex.c \
+       ao_panic.c \
+       ao_stdio.c \
+       ao_storage.c \
+       ao_report.c \
+       ao_ignite.c \
+       ao_flight.c \
+       ao_kalman.c \
+       ao_sample.c \
+       ao_data.c \
+       ao_convert_pa.c \
+       ao_convert_volt.c \
+       ao_task.c \
+       ao_log.c \
+       ao_log_mini.c \
+       ao_cmd.c \
+       ao_config.c \
+       ao_dma_stm.c \
+       ao_timer.c \
+       ao_exti_stm.c \
+       ao_spi_stm.c \
+       ao_adc_stm.c \
+       ao_usb_stm.c \
+       ao_m25.c \
+       ao_ms5607.c \
+       ao_beep_stm.c
+
+PRODUCT=EasyMini-v2.0
+PRODUCT_DEF=-DEASYMINI_V_2_0
+IDPRODUCT=0x0026
+
+CFLAGS = $(PRODUCT_DEF) $(STMF0_CFLAGS) -g -Os
+
+PROGNAME=easymini-v2.0
+PROG=$(PROGNAME)-$(VERSION).elf
+HEX=$(PROGNAME)-$(VERSION).ihx
+
+SRC=$(ALTOS_SRC) ao_easymini.c
+OBJ=$(SRC:.c=.o)
+
+all: $(PROG) $(HEX)
+
+$(PROG): Makefile $(OBJ)
+       $(call quiet,CC) $(LDFLAGS) $(CFLAGS) -o $(PROG) $(OBJ) $(LIBS)
+
+ao_product.h: ao-make-product.5c ../Version
+       $(call quiet,NICKLE,$<) $< -m altusmetrum.org -i $(IDPRODUCT) -p $(PRODUCT) -v $(VERSION) > $@
+
+$(OBJ): $(INC)
+
+distclean:     clean
+
+clean:
+       rm -f *.o $(PROGNAME)-*.elf $(PROGNAME)-*.ihx
+       rm -f ao_product.h
+
+install:
+
+uninstall:
diff --git a/src/easymini-v2.0/ao_easymini.c b/src/easymini-v2.0/ao_easymini.c
new file mode 100644 (file)
index 0000000..7246cae
--- /dev/null
@@ -0,0 +1,53 @@
+/*
+ * Copyright © 2011 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+#include <ao.h>
+#include <ao_exti.h>
+
+void
+main(void)
+{
+       ao_clock_init();
+       ao_task_init();
+       ao_timer_init();
+
+       ao_dma_init();
+       ao_spi_init();
+       ao_exti_init();
+
+       ao_adc_init();
+
+#if HAS_BEEP
+       ao_beep_init();
+#endif
+#if HAS_USB
+       ao_usb_init();
+#endif
+       ao_cmd_init();
+
+       ao_ms5607_init();
+
+       ao_storage_init();
+       ao_flight_init();
+       ao_log_init();
+       ao_report_init();
+       ao_igniter_init();
+       ao_config_init();
+
+       ao_start_scheduler();
+}
diff --git a/src/easymini-v2.0/ao_pins.h b/src/easymini-v2.0/ao_pins.h
new file mode 100644 (file)
index 0000000..c141d1a
--- /dev/null
@@ -0,0 +1,163 @@
+/*
+ * Copyright © 2017 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+#define HAS_BEEP               1
+#define HAS_BATTERY_REPORT     1
+
+#define AO_STACK_SIZE  448
+
+#define IS_FLASH_LOADER        0
+
+/* 48MHz clock based on 16MHz reference */
+//#define AO_HSI48     1
+#define AO_HSE                 16000000
+#define AO_RCC_CFGR_PLLMUL     STM_RCC_CFGR_PLLMUL_3
+#define AO_RCC_CFGR2_PLLDIV    STM_RCC_CFGR2_PREDIV_1
+#define AO_PLLMUL              3
+#define AO_PLLDIV              1
+
+/* HCLK = 48MHz */
+#define AO_AHB_PRESCALER       1
+#define AO_RCC_CFGR_HPRE_DIV   STM_RCC_CFGR_HPRE_DIV_1
+
+/* APB = 40MHz */
+#define AO_APB_PRESCALER       1
+#define AO_RCC_CFGR_PPRE_DIV   STM_RCC_CFGR_PPRE_DIV_1
+
+#define HAS_USB                        1
+#define AO_USB_DIRECTIO                0
+#define AO_PA11_PA12_RMP       1
+#define AO_USB_FORCE_IDLE      1
+
+#define AO_LOG_FORMAT          AO_LOG_FORMAT_EASYMINI
+
+#define HAS_BOOT_RADIO         0
+
+#define HAS_ACCEL              0
+#define HAS_GPS                        0
+#define HAS_RADIO              0
+#define HAS_FLIGHT             1
+#define HAS_EEPROM             1
+#define HAS_TELEMETRY          0
+#define HAS_APRS               0
+#define HAS_LOG                        1
+#define USE_INTERNAL_FLASH     0
+#define HAS_IGNITE             1
+#define HAS_IGNITE_REPORT      1
+
+/* Beeper is on Tim3 CH3 */
+#define BEEPER_TIMER           3
+#define BEEPER_CHANNEL         3
+#define BEEPER_PORT            (&stm_gpiob)
+#define BEEPER_PIN             0
+#define BEEPER_AFR             STM_AFR_AF1
+
+/* SPI */
+
+#define HAS_SPI_1              1
+#define SPI_1_PA5_PA6_PA7      1
+#define SPI_1_PB3_PB4_PB5      1
+#define SPI_1_OSPEEDR          STM_OSPEEDR_MEDIUM
+
+/* M25 */
+
+#define M25_MAX_CHIPS          1
+#define AO_M25_SPI_CS_PORT     (&stm_gpioa)
+#define AO_M25_SPI_CS_MASK     (1 << 15)
+#define AO_M25_SPI_BUS         AO_SPI_1_PB3_PB4_PB5
+
+/* MS5607 */
+
+#define HAS_MS5607             1
+#define HAS_MS5611             0
+#define AO_MS5607_PRIVATE_PINS 1
+#define AO_MS5607_CS_PORT      (&stm_gpioa)
+#define AO_MS5607_CS_PIN       4
+#define AO_MS5607_CS_MASK      (1 << AO_MS5607_CS_PIN)
+#define AO_MS5607_MISO_PORT    (&stm_gpioa)
+#define AO_MS5607_MISO_PIN     6
+#define AO_MS5607_MISO_MASK    (1 << AO_MS5607_MISO_PIN)
+#define AO_MS5607_SPI_INDEX    AO_SPI_1_PA5_PA6_PA7
+#define AO_MS5607_SPI_SPEED    AO_SPI_SPEED_12MHz
+
+#define AO_DATA_RING           64
+
+/*
+ * ADC
+ */
+
+#define HAS_ADC                        1
+
+#define AO_ADC_PIN0_PORT       (&stm_gpioa)    /* sense_m */
+#define AO_ADC_PIN0_PIN                0
+#define AO_ADC_PIN0_CH         0
+#define AO_ADC_PIN1_PORT       (&stm_gpioa)    /* sense_a */
+#define AO_ADC_PIN1_PIN                1
+#define AO_ADC_PIN1_CH         1
+#define AO_ADC_PIN2_PORT       (&stm_gpioa)    /* v_batt */
+#define AO_ADC_PIN2_PIN                2
+#define AO_ADC_PIN2_CH         2
+
+#define AO_ADC_RCC_AHBENR      ((1 << STM_RCC_AHBENR_IOPAEN))
+
+#define AO_NUM_ADC             3
+
+struct ao_adc {
+       int16_t         sense_m;
+       int16_t         sense_a;
+       int16_t         v_batt;
+};
+
+/*
+ * Igniter
+ */
+
+#define AO_IGNITER_CLOSED      400
+#define AO_IGNITER_OPEN                60
+
+#define AO_IGNITER_DROGUE_PORT (&stm_gpiob)
+#define AO_IGNITER_DROGUE_PIN  6
+#define AO_IGNITER_SET_DROGUE(v)       ao_gpio_set(AO_IGNITER_DROGUE_PORT, AO_IGNITER_DROGUE_PIN, AO_IGNITER_DROGUE, v)
+
+#define AO_IGNITER_MAIN_PORT   (&stm_gpiob)
+#define AO_IGNITER_MAIN_PIN    7
+#define AO_IGNITER_SET_MAIN(v) ao_gpio_set(AO_IGNITER_MAIN_PORT, AO_IGNITER_MAIN_PIN, AO_IGNITER_MAIN, v)
+
+#define AO_SENSE_DROGUE(p)     ((p)->adc.sense_a)
+#define AO_SENSE_MAIN(p)       ((p)->adc.sense_m)
+
+#define AO_ADC_DUMP(p) \
+       printf("tick: %5u apogee: %5d main: %5d batt: %5d\n", \
+              (p)->tick, (p)->adc.sense_a, (p)->adc.sense_m, (p)->adc.v_batt)
+
+/*
+ * Voltage divider on ADC battery sampler
+ */
+#define AO_BATTERY_DIV_PLUS    100     /* 100k */
+#define AO_BATTERY_DIV_MINUS   27      /* 27k */
+
+/*
+ * Voltage divider on ADC igniter samplers
+ */
+#define AO_IGNITE_DIV_PLUS     100     /* 100k */
+#define AO_IGNITE_DIV_MINUS    27      /* 27k */
+
+/*
+ * ADC reference in decivolts
+ */
+#define AO_ADC_REFERENCE_DV    33
diff --git a/src/easymini-v2.0/flash-loader/.gitignore b/src/easymini-v2.0/flash-loader/.gitignore
new file mode 100644 (file)
index 0000000..a8a0dce
--- /dev/null
@@ -0,0 +1 @@
+*.bin
diff --git a/src/easymini-v2.0/flash-loader/Makefile b/src/easymini-v2.0/flash-loader/Makefile
new file mode 100644 (file)
index 0000000..8a61175
--- /dev/null
@@ -0,0 +1,8 @@
+#
+# AltOS flash loader build
+#
+#
+
+TOPDIR=../..
+HARDWARE=easymini-v2.0
+include $(TOPDIR)/stmf0/Makefile-flash.defs
diff --git a/src/easymini-v2.0/flash-loader/ao_pins.h b/src/easymini-v2.0/flash-loader/ao_pins.h
new file mode 100644 (file)
index 0000000..3098fc2
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * Copyright © 2013 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+#ifndef _AO_PINS_H_
+#define _AO_PINS_H_
+
+#include <ao_flash_stm_pins.h>
+
+/* pin 5 (PB1) on debug header to gnd for boot mode */
+
+#define AO_BOOT_PIN                    1
+#define AO_BOOT_APPLICATION_GPIO       stm_gpiob
+#define AO_BOOT_APPLICATION_PIN                1
+#define AO_BOOT_APPLICATION_VALUE      1
+#define AO_BOOT_APPLICATION_MODE       AO_EXTI_MODE_PULL_UP
+
+/* USB */
+#define HAS_USB                        1
+#define AO_USB_DIRECTIO                0
+#define AO_PA11_PA12_RMP       1
+
+#endif /* _AO_PINS_H_ */
index 6904998265b123d3649725118226a77d66ddb848..2b9fe14fd638ecfade0724eba42d4101004e4122 100644 (file)
@@ -60,7 +60,7 @@ IDPRODUCT=0x000a
 
 CFLAGS = $(PRODUCT_DEF) $(STMF0_CFLAGS) -Os -g
 
-LDFLAGS=$(CFLAGS) -L$(TOPDIR)/stmf0 -Wl,-Tload.ld
+LDFLAGS=$(CFLAGS) -L$(TOPDIR)/stmf0 -Wl,-Tload.ld -n
 
 PROGNAME=nucleo-32
 PROG=$(PROGNAME)-$(VERSION).elf
diff --git a/src/nucleao-32/ao_lisp_os.h b/src/nucleao-32/ao_lisp_os.h
new file mode 100644 (file)
index 0000000..1993ac4
--- /dev/null
@@ -0,0 +1,62 @@
+/*
+ * Copyright © 2016 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+#ifndef _AO_LISP_OS_H_
+#define _AO_LISP_OS_H_
+
+#include "ao.h"
+
+static inline int
+ao_lisp_getc() {
+       static uint8_t  at_eol;
+       int c;
+
+       if (at_eol) {
+               ao_cmd_readline();
+               at_eol = 0;
+       }
+       c = ao_cmd_lex();
+       if (c == '\n')
+               at_eol = 1;
+       return c;
+}
+
+static inline void
+ao_lisp_os_flush(void)
+{
+       flush();
+}
+
+static inline void
+ao_lisp_abort(void)
+{
+       ao_panic(1);
+}
+
+static inline void
+ao_lisp_os_led(int led)
+{
+       ao_led_set(led);
+}
+
+static inline void
+ao_lisp_os_delay(int delay)
+{
+       ao_delay(AO_MS_TO_TICKS(delay));
+}
+
+#endif
diff --git a/src/nucleao-32/ao_lisp_os_save.c b/src/nucleao-32/ao_lisp_os_save.c
new file mode 100644 (file)
index 0000000..cd740cc
--- /dev/null
@@ -0,0 +1,53 @@
+/*
+ * Copyright © 2016 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ */
+
+#include <ao.h>
+#include <ao_lisp.h>
+#include <ao_flash.h>
+
+extern uint8_t __flash__[] __attribute__((aligned(4)));
+
+/* saved variables to rebuild the heap
+
+   ao_lisp_atoms
+   ao_lisp_frame_global
+ */
+
+int
+ao_lisp_os_save(void)
+{
+       int i;
+
+       for (i = 0; i < AO_LISP_POOL_TOTAL; i += 256) {
+               uint32_t        *dst = (uint32_t *) (void *) &__flash__[i];
+               uint32_t        *src = (uint32_t *) (void *) &ao_lisp_pool[i];
+
+               ao_flash_page(dst, src);
+       }
+       return 1;
+}
+
+int
+ao_lisp_os_restore_save(struct ao_lisp_os_save *save, int offset)
+{
+       memcpy(save, &__flash__[offset], sizeof (struct ao_lisp_os_save));
+       return 1;
+}
+
+int
+ao_lisp_os_restore(void)
+{
+       memcpy(ao_lisp_pool, __flash__, AO_LISP_POOL_TOTAL);
+       return 1;
+}
diff --git a/src/nucleao-32/load.ld b/src/nucleao-32/load.ld
new file mode 100644 (file)
index 0000000..02a23a9
--- /dev/null
@@ -0,0 +1,108 @@
+/*
+ * Copyright © 2012 Keith Packard <keithp@keithp.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
+ */
+
+MEMORY {
+       rom (rx) :   ORIGIN = 0x08001000, LENGTH = 27K
+       flash (rx) : ORIGIN = 0x08007c00, LENGTH = 1K
+       ram (!w) :   ORIGIN = 0x20000000, LENGTH = 6k - 128
+       stack (!w) : ORIGIN = 0x20000000 + 6k - 128, LENGTH = 128
+}
+
+INCLUDE registers.ld
+
+EXTERN (stm_interrupt_vector)
+
+SECTIONS {
+       /*
+        * Rom contents
+        */
+
+       .interrupt ORIGIN(ram) : AT (ORIGIN(rom)) {
+               __interrupt_start__ = .;
+               __interrupt_rom__ = ORIGIN(rom);
+               *(.interrupt)   /* Interrupt vectors */
+               __interrupt_end__ = .;
+       } > ram
+
+       .text ORIGIN(rom) + 0x100 : {
+               __text_start__ = .;
+
+               /* Ick. What I want is to specify the
+                * addresses of some global constants so
+                * that I can find them across versions
+                * of the application. I can't figure out
+                * how to make gnu ld do that, so instead
+                * we just load the two files that include
+                * these defines in the right order here and
+                * expect things to 'just work'. Don't change
+                * the contents of those files, ok?
+                */
+               ao_romconfig.o(.romconfig*)
+               ao_product.o(.romconfig*)
+
+               *(.text*)       /* Executable code */
+       } > rom
+
+       .ARM.exidx : {
+               *(.ARM.exidx* .gnu.linkonce.armexidx.*)
+       } > rom
+
+       .rodata : {
+               *(.rodata*)     /* Constants */
+       } > rom
+
+       __text_end__ = .;
+
+       /* Boot data which must live at the start of ram so that
+        * the application and bootloader share the same addresses.
+        * This must be all uninitialized data
+        */
+       .boot (NOLOAD) : {
+               __boot_start__ = .;
+               *(.boot)
+               . = ALIGN(4);
+               __boot_end__ = .;
+       } >ram
+
+       /* Data -- relocated to RAM, but written to ROM
+        */
+       .data : {
+               __data_start__ = .;
+               *(.data)        /* initialized data */
+               . = ALIGN(4);
+               __data_end__ = .;
+       } >ram AT>rom
+
+       .bss : {
+               __bss_start__ = .;
+               *(.bss)
+               *(COMMON)
+               . = ALIGN(4);
+               __bss_end__ = .;
+       } >ram
+
+       PROVIDE(end = .);
+
+       PROVIDE(__stack__ = ORIGIN(stack) + LENGTH(stack));
+
+       __flash__ = ORIGIN(flash);
+}
+
+ENTRY(start);
+
+
index 610f4a31ff72968b407f3c5cc0af1e3bf063f5de..15137230a9b84d2bbba7cec8d24817b308beaafc 100644 (file)
 #define BEEPER_TIMER   1
 #endif
 
+#ifndef BEEPER_AFR
+#define BEEPER_AFR     STM_AFR_AF2
+#endif
+
 #if BEEPER_TIMER == 1
 #define timer stm_tim1
 #define STM_RCC_TIMER STM_RCC_APB2ENR_TIM1EN
@@ -366,7 +370,7 @@ ao_beep(uint8_t beep)
                timer.egr = (1 << STM_TIM23_EGR_UG);
 
                /* Hook the timer up to the beeper pin */
-               stm_afr_set(BEEPER_PORT, BEEPER_PIN, STM_AFR_AF2);
+               stm_afr_set(BEEPER_PORT, BEEPER_PIN, BEEPER_AFR);
 #endif
        }
 }
diff --git a/src/telegps-v2.0/.gitignore b/src/telegps-v2.0/.gitignore
new file mode 100644 (file)
index 0000000..892c3ac
--- /dev/null
@@ -0,0 +1,3 @@
+ao_product.h
+ao_serial_lpc.h
+*.elf
diff --git a/src/telegps-v2.0/flash-loader/.gitignore b/src/telegps-v2.0/flash-loader/.gitignore
new file mode 100644 (file)
index 0000000..7bbed04
--- /dev/null
@@ -0,0 +1,2 @@
+*.elf
+*.bin
index 351d28d8c502e7d3c3cf72003d76853ff431e506..0551e1fcbb0707150390d4e5522634345c6c05fd 100644 (file)
@@ -1,9 +1,10 @@
 /*
- * Copyright © 2013 Keith Packard <keithp@keithp.com>
+ * Copyright © 2017 Keith Packard <keithp@keithp.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
index 82c1acd4b99c6590ccbd463e298082b5dbf8f487..ecd16dd204adbaeef418b786698710f13033a0d0 100644 (file)
@@ -1,9 +1,10 @@
 /*
- * Copyright © 2011 Keith Packard <keithp@keithp.com>
+ * Copyright © 2017 Keith Packard <keithp@keithp.com>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
index 9237780b7be35c3b02449b69e8f937f6877a304a..56f532efa6ad6fe6e32d243d718d7d09339c413f 100644 (file)
@@ -18,3 +18,4 @@ ao_flight_test_noisy_accel
 ao_flight_test_metrum
 ao_micropeak_test
 ao_aes_test
+ao_lisp_test