Skip to content

Commit

Permalink
chg: Scripts updated !minor
Browse files Browse the repository at this point in the history
  • Loading branch information
lcgamboa committed Jul 15, 2023
1 parent 262e2a4 commit dc54919
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG_auto.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

### New

* Add support to PIC16F819, PIC16F1827 and PIC16F1847 in Breadboard. [lcgamboa]

* Add support to Text Box part open external URLs on click. [lcgamboa]

* Add suport to ESP32-C3 to use efuse file. [lcgamboa]
Expand Down Expand Up @@ -64,6 +66,12 @@

### Fix

* Fix button read after pin mode set to input in McLab2 board. [lcgamboa]

* Add line break in Virtual Term to avoid UI freezing. [lcgamboa]

* Add 2k text limit to virtual_Text part. [lcgamboa]

* Fix 7s Display part draw when active mode is set to low. [lcgamboa]

* Fix PQDB board seven segments display point and analog channel order. [lcgamboa]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ PACKAGE=picsimlab
MAINVER=0
MINORVER=9
VERSION=0.9.0
DATE=230709
DATE=230715
VERSION_STABLE=0.8.12
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<body>
<br><h1> PICSimLab Help</h1><br>
<br>The help have been moved to:
<a href="https://lcgamboa.github.io/picsimlab_docs/">https://lcgamboa.github.io/picsimlab_docs/</a>
<a href="https://lcgamboa.github.io/picsimlab_docs/stable/">https://lcgamboa.github.io/picsimlab_docs/stable/</a>
</body>
</html>
1 change: 1 addition & 0 deletions src/Makefile.SDL2
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ override CXXFLAGS += -DEXT_BROWSER -D_VERSION_=\"${VERSION}\" -Wall -ggdb -O2 \
-D_LIB_=\"../lib/picsimlab/\"

override CXXFLAGS+=-fsanitize=address
override CXXFLAGS+= -D_CONSOLE_LOG_
#override CXXFLAGS+= -D_NOTHREAD

#LIBS = `lxrad_SDL2-config --libs` -lpicsim -lsimavr -lelf -lminizip $(ELIBS) -lucsim
Expand Down
1 change: 1 addition & 0 deletions src/Makefile.X11
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ execdir= ${prefix}/bin/
override CXXFLAGS += -DEXT_BROWSER -D_VERSION_=\"${VERSION}\" -Wall -g -O2 -D_SHARE_=\"../share/picsimlab/\" \
-I/usr/include/lxrad_X11 -Wall -D_REENTRANT -D_LIB_=\"../lib/picsimlab/\"

override CXXFLAGS+= -D_CONSOLE_LOG_
#override CXXFLAGS+= -D_NOTHREAD
#override CXXFLAGS+=-fsanitize=address

Expand Down
2 changes: 1 addition & 1 deletion src/boards/bsim_remote.cc
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ void bsim_remote::pins_reset(void) {

pname = MGetPinName(p + 1);

if ((pname[0] == 'P')) {
if (pname[0] == 'P') {
if (pname[1] == 'A') {
pins[p].port = (unsigned char*)&Ports[0];
pins[p].pord = pname[2] - '0';
Expand Down

0 comments on commit dc54919

Please sign in to comment.