Skip to content

Commit

Permalink
Update to v1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
keirf committed Jan 17, 2020
1 parent c15df04 commit b63ec20
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

export FW_VER := 1.7
export FW_VER := 1.8

PROJ = FF_OSD
VER := v$(FW_VER)
Expand Down Expand Up @@ -35,7 +35,7 @@ dist: all
endif

BAUD=921600
DEV=/dev/ttyUSB1
DEV=/dev/ttyUSB0

flash: all
sudo ~/stm32flash/stm32flash -b $(BAUD) \
Expand Down
10 changes: 10 additions & 0 deletions RELEASE_NOTES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
** Keir Fraser <[email protected]>
************************************

** v1.8 - 17 January 2020
- Support VGA (30kHz) video timing
- Support PA7 (SPI1) as display-output pin for higher-resolution VGA OSD
- Run-time configuration enhancements:
- Display Enable (PA15): Active HIGH, Active LOW, Disabled*
- Display Height: Double, Normal*
- Pixel Timing: 15kHz*, VGA, Auto
- Sync Polarity: High, Low*, Auto
- Amiga: WASD hotkeys to quickly move the OSD box

** v1.7 - 9 October 2019
- I2C: Bidirectional communications to Gotek
- Next FF release (v3.5a) will **REQUIRE** this firmware!
Expand Down
2 changes: 1 addition & 1 deletion src/default_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

const static struct config dfl_config = {

.polarity = FALSE,
.polarity = SYNC_LOW,
.h_off = 42,
.v_off = 50,
.min_cols = 16,
Expand Down

0 comments on commit b63ec20

Please sign in to comment.