10000 12 29 by chrisws · Pull Request #244 · smallbasic/SmallBASIC · GitHub
[go: up one dir, main page]

Skip to content

12 29 #244

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 36 commits into from
Jun 26, 2025
Merged

12 29 #244

Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
e1dab04
ANDROID: update USB api to allow setting baud rate and timeout
chrisws Mar 30, 2025
82c463c
ANDROID: experimental bluetooth support
chrisws Apr 5, 2025
1f9b998
ANDROID: fixed some intellij inspection issues
chrisws Apr 14, 2025
c7c3566
Removes IOIO-OTG support for now
chrisws Apr 14, 2025
2907bde
TEENSY: serial receive now takes buffer size arg
chrisws Apr 14, 2025
75438c3
TEENSY: update demo
chrisws Apr 14, 2025
a0b0784
ANDROID: update sound sample
chrisws Apr 19, 2025
e8e768e
COMMON: bump version
chrisws Apr 19, 2025
ac35055
ANDROID: update file UI dependencies
chrisws Apr 19, 2025
d978842
ANDROID: allow android.speak to take addtional non-string args
chrisws Apr 19, 2025
6c38f2b
ANDROID: update SOUND implementation to avoid skips
chrisws Apr 19, 2025
aad80fc
ANDROID: update SOUND implementation to avoid skips
chrisws Apr 19, 2025
cec6cb7
ANDROID: minor fix for PEN(3)
chrisws Apr 26, 2025
2c26e10
Merge branch 'smallbasic:master' into 12_29
chrisws May 3, 2025
fedfbcc
SDL: upgrade to SDL v 3.x
chrisws May 5, 2025
6d2bf2d
ANDROID: update bluetooth permissions for older android versions #242
chrisws May 6, 2025
c42cba8
ANDROID: updated file selection handling for new MUI grid version
chrisws May 6, 2025
< 10000 /a>
9c9ae77
ANDROID: update bluetooth handling for older android devices
chrisws May 10, 2025
ad5a33b
COMMON: fix issue with space char before import 'c-module'
chrisws May 17, 2025
e46505d
ANDROID: implemented find command
chrisws May 18, 2025
ac23ca3
UI: update help display
chrisws May 24, 2025
77c221f
UI: update help display
chrisws May 24, 2025
bed7c3d
UI: update help display
chrisws May 24, 2025
740decc
UI: experimental keypad to replace android keypad
chrisws May 27, 2025
8955be7
UI: experimental keypad to replace android keypad
chrisws May 28, 2025
99742e9
UI: experimental keypad to replace android keypad
chrisws May 29, 2025
fb6b2c3
UI: experimental keypad to replace android keypad
chrisws Jun 5, 2025
02364ef
COMMON: resolved some compiler warnings
chrisws Jun 6, 2025
bd05aac
COMMON: update dependencies
chrisws Jun 6, 2025
230060f
SDL: added cmake build scripts for use with clion (free version)
chrisws Jun 7, 2025
1c22dfa
UI: experimental keypad to replace android keypad
chrisws Jun 7, 2025
2709c3f
UI: experimental keypad to replace android keypad
chrisws Jun 8, 2025
8c6752f
UI: experimental keypad to replace android keypad
chrisws Jun 11, 2025
da9d224
UI: experimental keypad to replace android keypad
chrisws Jun 13, 2025
05e366d
UI: experimental keypad to replace android keypad
chrisws Jun 14, 2025
6094d3a
UI: experimental keypad to replace android keypad
chrisws Jun 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
COMMON: fix issue with space char before import 'c-module'
  • Loading branch information
chrisws committed May 17, 2025
commit ad5a33b96fe51ddddf0a4feb50c4b8c3e5b40aee
2 changes: 2 additions & 0 deletions src/common/scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -4576,6 +4576,8 @@ void comp_preproc_pass1(char *p) {
comp_proc_level = 0;
*comp_bc_proc = '\0';

SKIP_SPACES(p);

while (*p) {
if (strncmp(LCN_OPTION, p, LEN_OPTION) == 0) {
// options
Expand Down
0