Skip to content

Commit

Permalink
editor now a UIScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
bwhitman committed May 22, 2024
1 parent 7a82fc5 commit e9c80fe
Show file tree
Hide file tree
Showing 6 changed files with 292 additions and 218 deletions.
6 changes: 3 additions & 3 deletions docs/tulip_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ Tulip ships with a text editor, based on pico/nano. It supports syntax highlight

```python
# Opens the Tulip editor to the given filename.
# Control-X exits and prompts to save if any changes.
# Control-O is save as
# Control-X saves the file, if no filename give will prompt for one.
# Control-O is save as -- will write to new filename given
# Control-W searches
# Filename will be created on save if it doesn't exist.
edit("game.py")
edit() # no filename
```


Expand Down
2 changes: 1 addition & 1 deletion tulip/esp32s3/tasks.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#define ALLES_RENDER_TASK_STACK_SIZE (8 * 1024)
#define ALLES_FILL_BUFFER_TASK_STACK_SIZE (8 * 1024)

#define MP_TASK_HEAP_SIZE (2 * 1024 * 1024)
#define MP_TASK_HEAP_SIZE (3 * 1024 * 1024)

#define DISPLAY_TASK_NAME "display_task"
#define USB_TASK_NAME "usb_task"
Expand Down
Loading

0 comments on commit e9c80fe

Please sign in to comment.