Skip to content
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

FFT support (PR is work in progress) #2511

Closed
wants to merge 55 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
c5c2d74
cmake/core.cmake
aliceisjustplaying Apr 12, 2024
f5e7ccd
build/assets/luademo.tic.dat
aliceisjustplaying Apr 12, 2024
10310f0
demos/luademo.lua
aliceisjustplaying Apr 12, 2024
117c622
src/api.h
aliceisjustplaying Apr 12, 2024
e5fda37
src/api/janet.c
aliceisjustplaying Apr 12, 2024
279bb34
src/api/js.c
aliceisjustplaying Apr 12, 2024
e5dfe13
src/api/lua.c
aliceisjustplaying Apr 12, 2024
2c4f667
src/api/mruby.c
aliceisjustplaying Apr 12, 2024
898e18b
src/api/python.c
aliceisjustplaying Apr 12, 2024
5805a2f
src/api/scheme.c
aliceisjustplaying Apr 12, 2024
560b48d
src/api/squirrel.c
aliceisjustplaying Apr 12, 2024
197527e
src/api/wren.c
aliceisjustplaying Apr 12, 2024
a083723
src/ext/*
aliceisjustplaying Apr 12, 2024
1dc19ca
src/studio/config.c - set devmode on by default
aliceisjustplaying Apr 12, 2024
e2f1db8
src/studio/editors/code.c
aliceisjustplaying Apr 12, 2024
065f723
src/studio/editors/code.h
aliceisjustplaying Apr 12, 2024
ab44c5f
src/studio/screens/console.c - TODO: do we need this?
aliceisjustplaying Apr 12, 2024
abe01fd
src/studio/* - TODO: check studio.c for a TODO
aliceisjustplaying Apr 12, 2024
7635ace
src/system/sdl/main.c
aliceisjustplaying Apr 12, 2024
b0a109c
tic80.sublime-project
aliceisjustplaying Apr 12, 2024
47cfedb
src/api.h typo fix
aliceisjustplaying Apr 12, 2024
3597672
well now i know why those code changes were neccessary
aliceisjustplaying Apr 13, 2024
a08b533
indent fix
aliceisjustplaying Apr 13, 2024
4cbce7c
add TODO for logging
aliceisjustplaying Apr 13, 2024
2860242
remove stub building for now; build for mac/arm64 as well
aliceisjustplaying Apr 13, 2024
b0845af
update actions/checkout and actions/upload-artifact to v4
aliceisjustplaying Apr 13, 2024
6f5d006
update more outdated actions
aliceisjustplaying Apr 13, 2024
89c4306
remove stub building for html
aliceisjustplaying Apr 13, 2024
0db9fda
don't run actions twice on every push to a PR
aliceisjustplaying Apr 13, 2024
759c164
CI fixes
aliceisjustplaying Apr 13, 2024
34bec12
remove CI deprecations
aliceisjustplaying Apr 13, 2024
3fd967f
Revert "update actions/checkout and actions/upload-artifact to v4"
aliceisjustplaying Apr 14, 2024
ffde21f
Revert "update more outdated actions"
aliceisjustplaying Apr 14, 2024
937e29c
Revert "remove CI deprecations"
aliceisjustplaying Apr 14, 2024
c175837
gitignore update
aliceisjustplaying Apr 14, 2024
40974ca
disable builds that fail for now
aliceisjustplaying Apr 14, 2024
0318f27
update README, add screenshot
aliceisjustplaying Apr 14, 2024
20e5e1e
remove byte battle things for the FFT PR
aliceisjustplaying Apr 17, 2024
ccd51fd
remove default devmode for now
aliceisjustplaying Apr 17, 2024
aeb34cf
more undo
aliceisjustplaying Apr 17, 2024
54719f9
more undo
aliceisjustplaying Apr 17, 2024
15a051e
more undo
aliceisjustplaying Apr 17, 2024
1a52558
more undo
aliceisjustplaying Apr 17, 2024
bb56f6b
logging comment
aliceisjustplaying Apr 17, 2024
2c061d4
remove extra character
aliceisjustplaying Apr 17, 2024
717ad89
fix stub/fft issue (don't need to call the FFT stuff when not in editor
aliceisjustplaying Apr 17, 2024
b448421
update README
aliceisjustplaying Apr 17, 2024
4c670e1
update README
aliceisjustplaying Apr 17, 2024
214d9d1
update README
aliceisjustplaying Apr 17, 2024
a602de2
update help for fft() - will be expanded/updated further
aliceisjustplaying Apr 17, 2024
3a6769a
get up to parity with bonzomatic's fft.cpp; BOOL -> bool; add logging
aliceisjustplaying Apr 18, 2024
df5202c
add credit for logging function
aliceisjustplaying Apr 18, 2024
41552d3
cleanup; add hide fft behind the --fft CLI flag
aliceisjustplaying Apr 19, 2024
9c46f9a
better help
aliceisjustplaying Apr 19, 2024
6be1221
update kiss_fft
aliceisjustplaying Apr 21, 2024
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
remove extra character
  • Loading branch information
aliceisjustplaying committed Apr 22, 2024
commit 2c061d4fb27cf5329bb031a5f3e943a42fe4710e
2 changes: 1 addition & 1 deletion src/studio/editors/code.c
Original file line number Diff line number Diff line change
@@ -371,7 +371,7 @@ static void getCursorPosition(Code* code, s32* x, s32* y)
pointer++;
}
}
s

static s32 getLinesCount(Code* code)
{
char* text = code->src;