rusefillc
a8a0a54834
trying to reduce confusion in UI
2021-11-24 09:12:34 -05:00
rusefillc
d0db3f9733
typo
2021-11-24 09:12:06 -05:00
GitHub build-firmware Action
d0ddd991a6
Auto-generated configs and docs
2021-11-24 13:02:01 +00:00
Matthew Kennedy
5274cffff3
main relay doesn't use fsio ( #3580 )
...
* fuel pump
* s
* call correct callback
* more dead
* test adjustment
* don't overflow
* don't need separate function
* java
* give it a name
* generated
* generated
* add to generate script
* import *
* this is so cheap we don't need a flag
* main relay
* plumbing
* dead fsio stuff
* test it
* by 100%, we mean 99.98%
2021-11-24 07:47:51 -05:00
GitHub set-date Action
e10054a592
Update date
2021-11-24 01:00:22 +00:00
Scott Smith
43e4e09d70
Update the simulator TS port macros to match the rest of the product. ( #3600 )
2021-11-23 19:15:09 -05:00
rusefillc
974b1082e4
bugfix - no script on load
2021-11-23 17:16:33 -05:00
rusefillc
d49085237d
doc
2021-11-23 17:16:22 -05:00
rusefillc
3cce6b8033
helping Android & copy right-click menu for Lua editor
2021-11-23 17:07:41 -05:00
rusefillc
b89a451a2f
rusEFI console to has "Erase via DFU" button #2250
2021-11-23 16:49:20 -05:00
GitHub build-firmware Action
974e8928a1
Auto-generated configs and docs
2021-11-23 21:48:05 +00:00
rusefillc
09ed871dad
well Lua wants to be BIG
2021-11-23 16:40:04 -05:00
rusefillc
61849c6da7
rusEFI console to has "Erase via DFU" button #2250
2021-11-23 16:24:05 -05:00
rusefillc
44754607ef
rusEFI console to has "Erase via DFU" button #2250
2021-11-23 16:24:05 -05:00
GitHub build-firmware Action
16e025a7fc
Auto-generated configs and docs
2021-11-23 21:00:29 +00:00
rusefillc
7760ddd8b6
live data for wastegate #3588
...
i want to persist state so no 'const' sorry
2021-11-23 15:52:43 -05:00
rusefillc
0b1b628fd3
live data for wastegate #3588
2021-11-23 15:51:30 -05:00
rusefillc
cedc5f4e9c
LUA CANbus expect 29bit ID by default #3592
...
not great quick fix
2021-11-23 15:41:43 -05:00
GitHub build-firmware Action
ec7b493f6b
Auto-generated configs and docs
2021-11-23 20:06:24 +00:00
rusefillc
9300866ba8
live data for wastegate #3588
2021-11-23 15:02:03 -05:00
rusefillc
c5242fb720
live data for wastegate #3588
2021-11-23 15:00:47 -05:00
Matthew Kennedy
e7417ef0c0
simulator writes binary log ( #3598 )
...
* simulator writes log
* replace the file
* check that the sim actually fails
* put it back
* did the sim really not fail?
* good, asan does catch it
2021-11-23 11:42:45 -05:00
rusefillc
fc10166f97
spelling
2021-11-23 07:57:43 -05:00
GitHub set-date Action
5a8eed86ee
Update date
2021-11-23 01:00:35 +00:00
rusefillc
d9e8509440
harley
2021-11-22 19:16:57 -05:00
GitHub build-firmware Action
191b76f4dd
Auto-generated configs and docs
2021-11-22 23:12:52 +00:00
Matthew Kennedy
9bd8a19564
oh my god we've had no asserts ( #3595 )
2021-11-22 17:52:03 -05:00
rusefi
6ca471494b
harley lua
2021-11-22 17:33:28 -05:00
rusefi
688d92bbe0
lua editor scroll bar
2021-11-22 17:24:50 -05:00
Matthew Kennedy
c45bb2b67d
embiggen log buffer ( #3596 )
2021-11-22 16:46:18 -05:00
rusefillc
d0f4969b3b
harley
2021-11-22 14:29:48 -05:00
rusefillc
5271d9791a
j1850 SAE crc8 Lua
2021-11-22 14:19:19 -05:00
rusefillc
3d8ddbceea
j1850 SAE crc8
2021-11-22 14:03:52 -05:00
GitHub build-firmware Action
a2bc33b211
Auto-generated configs and docs
2021-11-22 18:42:24 +00:00
rusefillc
5d55b8538f
unusedLogFormat
2021-11-22 13:37:06 -05:00
rusefi
0820fa178d
harley CAN Lua
2021-11-22 13:00:16 -05:00
Scott Smith
467db16828
Move LuaThread to CCM, and shuffle a couple items out. ( #3587 )
...
Lua's stack probably doesn't need DMA. Allows us to group more of our unused RAM together
in one place.
2021-11-21 20:35:03 -05:00
GitHub set-date Action
743ea73afd
Update date
2021-11-22 01:01:34 +00:00
rusefillc
ee9fef1024
automation around outputs section #197
2021-11-21 09:35:37 -05:00
GitHub build-firmware Action
34c2fcc60d
Auto-generated configs and docs
2021-11-21 13:16:25 +00:00
rusefillc
07ce2036b3
https://rusefi.com/forum/viewtopic.php?f=5&t=2217
2021-11-21 08:12:05 -05:00
Scott Smith
9d61fb4cfd
Drop SingleChannelStateSequence in favor of MultiChannelStateSequenceWithData ( #3519 )
...
* Drop SingleChannelStateSequence in favor of MultiChannelStateSequenceWithData
Most all the users were Multi* anyways, so just improve that:
1. Allow up to 8 waveforms to share one byte per timestamp. It could be better but this is simple
and gets most of the benefit.
2. Use a wrapper structure to handle reserving space for the arrays. Makes the interface simpler
and more rigid. Also saves 4 bytes per Multi*. Downside is access is now via -> and *,
not . and (nothing).
Saves 224 bytes of BSS, 1832 bytes of RAM4/CCM, 952 bytes of TEXT, and 103 bytes of RODATA
* Instantiate a base_t to make debugging easier.
Also fixes crash on real firmware by using &m_base instead - LTO optimization issue?
* No magical templated StaticAlloc thingy. Just virtual functions.
2021-11-21 04:56:07 -05:00
Matthew Kennedy
b9f8409f59
correctly compute engine revolution number ( #3586 )
...
* add param
* first revolution is revolution 0, not revolution 1
* would you look at that, we sync one rev quicker!
* changelog
* rpm value
2021-11-21 09:01:27 +03:00
GitHub set-date Action
6047404cfd
Update date
2021-11-21 01:02:55 +00:00
rusefillc
df7ea34864
automation around outputs section #197
2021-11-20 14:38:50 -05:00
rusefillc
e10067da93
automation around outputs section #197
2021-11-20 14:27:21 -05:00
rusefillc
1c89d629e5
automation around outputs section #197
2021-11-20 14:08:02 -05:00
rusefillc
fe3f8233d6
automation around outputs section #197
2021-11-20 13:30:25 -05:00
rusefillc
f0e02f70c4
Epic: Remove FSIO #2928
2021-11-20 13:19:50 -05:00
rusefillc
9685c55d09
No longer used
2021-11-20 13:18:57 -05:00