Skip to content

Commit

Permalink
Version 1.10
Browse files Browse the repository at this point in the history
Signed-off-by: Keith Packard <[email protected]>
  • Loading branch information
keith-packard committed Nov 28, 2024
1 parent 8ad51a2 commit 75acf1b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ described below.

* [Narrow 1284](https://www.crowdsupply.com/pandauino/narrow).

* [Arduino Nano Every](https://store.arduino.cc/usa/nano-every).
* [Arduino Nano Every](https://store.arduino.cc/usa/nano-every). This
uses flash for storage, and includes most of the math library and
the tone driver.

* [LilyPad Arduino 328](https://www.sparkfun.com/products/13342).
This port leaves out dictionaries and slices so that it has space
Expand All @@ -96,6 +98,14 @@ described below.

Here's some places that have seen recent work

* Remove the -big variants. The variants supporting boot loaders now
have sufficient space to support all of the options formerly
reserved for the -big ones.

* Rewrite the ATmel chip support to use __flash attributes. Target
newer GCC version. With these changes, there's lots more space
available on ATmel targets.

* Changed the builtin math, time and random functions to no longer
include the math., time. or random. prefixes. This makes them more
convenient to use. To retain compatibility with Python, you can
Expand Down
4 changes: 2 additions & 2 deletions snek.defs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ vpath %.ll $(SNEK_LOCAL_VPATH):$(SNEK_ROOT)
vpath %.py $(SNEK_LOCAL_VPATH):$(SNEK_ROOT)
vpath %.builtin $(SNEK_LOCAL_VPATH):$(SNEK_ROOT)

SNEK_VERSION = 1.9
SNEK_DATE = 2022-12-20
SNEK_VERSION = 1.10
SNEK_DATE = 2024-11-28

SNEK_VERSION_DASH = $(shell echo $(SNEK_VERSION) | sed 's/\./-/g')

Expand Down

0 comments on commit 75acf1b

Please sign in to comment.