Skip to content

Commit

Permalink
Makefile: Werror disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoquesada committed Nov 10, 2019
1 parent 809084c commit 819559b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.firmware.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Firmware: Added support for "single joystick" unijoysticle devices.
Edit uni_config.h and change UNIJOYSTICLE_SINGLE_PORT to 1
- Firmware: Added support for iCade 8-bitty gamepad.
- Firmware: Added support for iCade 8-bitty gamepad.

### Changed
- Firmware: ESP-IDF v3.3
* Firmware: BTStack 138818a33e591e964a727284c192700abe2fee26 (2019-9-9)

- Firmware: BTStack 138818a33e591e964a727284c192700abe2fee26 (2019-9-9)
- Firmware: Improved iCade Cabinet support:
autofire, debug and shoulder buttons supported.

## [0.4] - 2019-09-28
### Changed
Expand Down
4 changes: 3 additions & 1 deletion firmware/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Unijoysticle 2 firmware
PROJECT_NAME := firmware

CFLAGS += -Wall -Werror
CFLAGS += -Wall
# Cannot Werror since it depends on other BTStack which has some warnings
#CFLAGS += -Werror

include $(IDF_PATH)/make/project.mk

0 comments on commit 819559b

Please sign in to comment.