Skip to content

Commit 2591984

Browse files
authored
Merge pull request #166 from fhoedemakers/nesfixmurmulator
Fixes for controller and PSRAM issues murmulator M1/M2
2 parents cf087bd + 90ee4ec commit 2591984

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,15 @@
88

99
[See setup section in readme how to install and wire up](https://github.com/fhoedemakers/pico-infonesPlus#pico-setup)
1010

11-
# vx.xx release notes ( To be releasesd)
11+
# v0.35 release notes
1212

1313
## Fixes
1414

15-
- The -s option (PSRAM cs pin) is removed from pico_shared/bld.sh script as it caused issues with the PSRAM settings in pico_shared/BoardConfigs.cmake. The CS pin must be set correctly in pico_shared/BoardConfigs.cmake. (default is 47)
15+
- The -s option (PSRAM cs pin) is removed from pico_shared/bld.sh script as it caused issues with the PSRAM settings in pico_shared/BoardConfigs.cmake. The PSRAM CS pin must be set correctly in pico_shared/BoardConfigs.cmake. (default is 47)
16+
- Murmulator M1 and M2 fixes [#165](https://github.com/fhoedemakers/pico-infonesPlus/issues/165):
17+
- Second NES controller now works.
18+
- PS_RAM setting fixed for M2 board.
19+
- PS_RAM setting added for M1 board.
1620

1721
# v0.34 release notes
1822

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ IF(NOT CMAKE_BUILD_TYPE)
4646
ENDIF(NOT CMAKE_BUILD_TYPE)
4747
message("* Current build type is : ${CMAKE_BUILD_TYPE}")
4848
if (NOT HW_CONFIG)
49-
set(HW_CONFIG 1 CACHE STRING "Select the hardware configuration for your board")
49+
set(HW_CONFIG 2 CACHE STRING "Select the hardware configuration for your board")
5050
endif()
5151
if (NOT USE_HSTX)
5252
set(USE_HSTX 1 CACHE STRING "Use HSTX for display output when possible")

pico_shared

0 commit comments

Comments
 (0)