GitHub build-firmware Action
e63e942fb5
Auto-generated configs and docs
2021-11-09 02:26:06 +00:00
rusefi
99a90309ef
why is meat allowed to touch machine?!
2021-11-08 20:49:12 -05:00
rusefi
8bab53c1fd
nicer messages
2021-11-08 20:49:12 -05:00
GitHub build-firmware Action
464332e5be
Auto-generated configs and docs
2021-11-09 01:26:41 +00:00
GitHub set-date Action
3168ccd62c
Update date
2021-11-09 01:00:19 +00:00
rusefi
69a53c565f
pid demo progress
2021-11-08 17:31:33 -05:00
GitHub build-firmware Action
dbecc45968
Auto-generated configs and docs
2021-11-08 22:24:44 +00:00
Scott Smith
8639b7c7e4
Make getTimeNowNt even faster ( #3504 )
...
The last version is already much better than the original, mostly because it doesn't call
CriticalSectionLocker, which has a ton of overhead due to debug tracking. But this version is
another 4 instructions / 12 bytes shorter. Does as much match in 32-bit land as possible, and
avoids math operations that span 64-bits (i.e. either operate on the lower half or upper half, but
not both). The result is only 3 instructions not including the necessary 4 loads (ptr to now, now,
ptr to upper, upper), 1 store (upper), and 1 return/branch.
2021-11-08 14:24:31 -05:00
Andrey
2166a5ba16
ETB: do not touch HW pins if function not selected, this way Lua can use DC motor hardware pins directly
2021-11-08 12:44:37 -05:00
Andrey
757cd10c1f
docs
2021-11-08 12:23:00 -05:00
Scott Smith
2752c39d7f
Change getTimeNowNt to be lock free. ( #3502 )
...
Track the top two bits of the 32-bit time field, along with the bits that comprise the top half of
the 64-bit time field. We can detect when the 32-bit field is advancing or falling back from the
global time counter as long as the change is less than about 1 billion ticks. This shows up as
either 01 or 11 in the top 2 bits of the 32-bit time field relative to the 64-bit field. Or is
there is no change it shows up as 00. Changes of 2 billion or more cannot be discerned as +2
billion and -2 billion both show up as 10.
Change the simulator to use this logic to make sure it gets some exercise.
2021-11-08 08:24:20 -05:00
GitHub build-firmware Action
f6aac4b1f9
Auto-generated configs and docs
2021-11-08 03:23:43 +00:00
GitHub set-date Action
db5ef62885
Update date
2021-11-08 01:02:17 +00:00
GitHub build-firmware Action
41fe16ed40
Auto-generated configs and docs
2021-11-07 18:40:19 +00:00
GitHub build-firmware Action
678f5db3b9
Auto-generated configs and docs
2021-11-07 15:30:54 +00:00
Andrey
49d4dea65e
lua pid class #3411
2021-11-07 09:53:40 -05:00
Andrey
c98bfecf11
lua pid class #3411
2021-11-07 09:49:47 -05:00
Andrey
94faa375e1
reducing complexity
2021-11-07 01:57:32 -05:00
rusefillc
d0a8bbc974
typo
2021-11-07 01:51:05 -05:00
rusefillc
4f6dc57d31
refactoring - magic constant bad
...
cypress and kinetis both have this macro already
2021-11-07 01:34:16 -04:00
rusefillc
73fe152db2
refactoring - magic constant bad
...
cypress and kinetis both have this macro already
2021-11-07 01:28:28 -04:00
GitHub build-firmware Action
fdc32277ea
Auto-generated configs and docs
2021-11-07 04:44:16 +00:00
rusefillc
5ddd516860
refactoring - magic constant bad
2021-11-07 00:09:17 -04:00
rusefillc
fd28e82f73
refactoring - magic constant bad
2021-11-07 00:03:16 -04:00
GitHub build-firmware Action
2ee8ecb287
Auto-generated configs and docs
2021-11-07 03:59:47 +00:00
rusefillc
eb4ef563dd
a bit of dead code
2021-11-06 23:39:56 -04:00
GitHub build-firmware Action
1ce3fa63b7
Auto-generated configs and docs
2021-11-07 03:33:26 +00:00
GitHub build-firmware Action
7df704907c
Auto-generated configs and docs
2021-11-07 02:14:13 +00:00
rusefillc
3f278e989b
a bit of dead code
2021-11-06 21:19:56 -04:00
GitHub build-firmware Action
4dca92f21e
Auto-generated configs and docs
2021-11-07 01:05:29 +00:00
rusefillc
31347d66be
a bit of dead code
2021-11-06 21:01:01 -04:00
Andrey
e3355ab2d3
Remove Miata MX5 NB1 trigger #3488
2021-11-06 20:24:41 -04:00
GitHub build-firmware Action
cab19aeba0
Auto-generated configs and docs
2021-11-06 23:15:42 +00:00
rusefillc
faa8abf673
a bit of dead code
2021-11-06 18:43:19 -04:00
GitHub build-firmware Action
beb2083509
Auto-generated configs and docs
2021-11-06 22:37:34 +00:00
rusefillc
4045893437
PROTEUS_LUA_DEMO
2021-11-06 18:24:59 -04:00
GitHub build-firmware Action
75f959d339
Auto-generated configs and docs
2021-11-06 22:15:32 +00:00
GitHub build-firmware Action
ae65ebdc46
Auto-generated configs and docs
2021-11-06 19:17:51 +00:00
GitHub build-firmware Action
f631836c6d
Auto-generated configs and docs
2021-11-06 18:12:59 +00:00
GitHub build-firmware Action
1af4c562cb
Auto-generated configs and docs
2021-11-06 17:41:14 +00:00
GitHub build-firmware Action
c6ce4ebb40
Auto-generated configs and docs
2021-11-06 17:17:08 +00:00
GitHub build-firmware Action
e266f8740f
Auto-generated configs and docs
2021-11-06 13:26:06 +00:00
GitHub build-firmware Action
b117f260c1
Auto-generated configs and docs
2021-11-06 03:28:22 +00:00
Scott Smith
e350b0b6b4
Configuration for HPFP control algorithm. ( #3475 )
2021-11-05 23:15:35 -04:00
Scott Smith
e8633a8cb4
Move fuel density to a header file so it can be accessed by other components. ( #3474 )
2021-11-05 22:29:56 -04:00
GitHub build-firmware Action
10c9977b9d
Auto-generated configs and docs
2021-11-06 02:01:07 +00:00
Scott Smith
61fd669add
Convert existing tables to use the simpler 3d table definition style in rusefi_config.txt ( #3473 )
...
This fixes #3465 .
2021-11-05 21:55:33 -04:00
GitHub set-date Action
8355ed02ba
Update date
2021-11-06 00:59:21 +00:00
GitHub build-firmware Action
3a05dff385
Auto-generated configs and docs
2021-11-06 00:31:14 +00:00
Matthew Kennedy
f45d365f24
log current engine phase on trigger teeth ( #3471 )
...
* log phase on trigger teeth
* ui
* guard
2021-11-05 20:02:15 -04:00
GitHub build-firmware Action
148b2620e1
Auto-generated configs and docs
2021-11-05 23:52:02 +00:00
GitHub build-firmware Action
2cd276ba16
Auto-generated configs and docs
2021-11-05 22:21:29 +00:00
Matthew Kennedy
72cdc52acc
configurable etb maximum ( #3469 )
...
* etb maximum
* update tests and test new behavior
2021-11-05 18:16:19 -04:00
Scott Smith
fcac26c032
Allow scaled_channel to have both multiplier and divisor ( #3468 )
...
Disallow scaled_channel for float. I can't think of a reason to allow it, and it gets in the way
of rounding.
Add separate template param to setTable; let the compiler sort out whether assignment can happen
between TElement and VElement without forcing them to be the same at function call time.
2021-11-05 17:34:22 -04:00
Andrey
818e0057c9
lua curve progress
2021-11-05 16:08:48 -04:00
Andrey
c05376ed5f
lua curve progress
2021-11-05 16:08:34 -04:00
Matthew Kennedy
2c47f603fc
make master happy ( #3467 )
2021-11-05 16:01:13 -04:00
GitHub build-firmware Action
f3e6b44f89
Auto-generated configs and docs
2021-11-05 19:42:05 +00:00
Matthew Kennedy
b41dbe2ed1
nissan MR18DE VVT cam pattern ( #3466 )
...
* refactoring nissan trigger
* comments
* plumbing
* b
* enums
* image
* image
* implement decoder
* reshuffle
* don't case unused
* dead trigger enums
2021-11-05 15:33:22 -04:00
GitHub build-firmware Action
b692293ca6
Auto-generated configs and docs
2021-11-05 18:40:32 +00:00
rusefillc
57dc9b36f4
lua curve progress
2021-11-05 10:34:12 -04:00
rusefillc
2bd0633ecb
minor todo
2021-11-05 10:01:58 -04:00
GitHub build-firmware Action
6f2744a5c9
Auto-generated configs and docs
2021-11-05 11:19:56 +00:00
Matthew Kennedy
6b85313b04
nissan 4yl crank pattern ( #3462 )
...
* refactoring nissan trigger
* comments
* plumbing
* b
2021-11-05 07:15:03 -04:00
rusefillc
31a2218339
more curves! also names for curves
2021-11-04 23:59:04 -04:00
GitHub build-firmware Action
221b3c52bc
Auto-generated configs and docs
2021-11-05 03:37:40 +00:00
rusefillc
8538e751e7
more curves! also names for curves
2021-11-04 23:22:37 -04:00
rusefillc
b9861159a1
more curves! also names for curves
2021-11-04 23:19:44 -04:00
GitHub build-firmware Action
01909c7fbb
Auto-generated configs and docs
2021-11-05 03:03:11 +00:00
GitHub set-date Action
fa105bfe1e
Update date
2021-11-05 00:59:35 +00:00
GitHub build-firmware Action
b79d5af199
Auto-generated configs and docs
2021-11-04 23:48:48 +00:00
rusefi
365a1e13a8
turboSpeedSensorMultiplier
2021-11-04 19:35:58 -04:00
racer-coder
55ac8d56b8
Fix the types in various fuel functions that actually refer to grams, not ms. ( #3458 )
2021-11-04 11:50:19 -04:00
GitHub build-firmware Action
23aea8a957
Auto-generated configs and docs
2021-11-04 14:24:01 +00:00
rusefillc
88d7046382
most dead miata config
2021-11-04 09:56:05 -04:00
Matthew Kennedy
dfdcece90f
uppppppdate ( #3455 )
...
Co-authored-by: Matthew Kennedy <makenne@microsoft.com>
2021-11-04 05:52:25 -04:00
Matthew Kennedy
cadaf2a801
extract engine phase function ( #3456 )
...
* extract getCurrentEnginePhase
* inject engine ref
* never invalid RPM, use 0 instead
Co-authored-by: Matthew Kennedy <makenne@microsoft.com>
2021-11-04 05:46:16 -04:00
GitHub set-date Action
4b1a641e11
Update date
2021-11-04 00:59:56 +00:00
GitHub build-firmware Action
e9bee9f39e
Auto-generated configs and docs
2021-11-03 23:58:42 +00:00
Matthew Kennedy
a2766e5d9b
support autoscale on table axes ( #3452 )
...
* scale map Y axis
* allow different row/col types
* scaled channel detector
* interpolation
* looks like this actually works
* tests, no manual scaling
* comment
2021-11-03 19:53:26 -04:00
GitHub build-firmware Action
7b03138c6e
Auto-generated configs and docs
2021-11-03 21:10:50 +00:00
Andrey
52bd7a9cb7
lua interpolate
2021-11-02 23:35:48 -04:00
Andrey
8c11ab341e
refatoring: splitting lua hooks into multiple files
2021-11-02 23:27:48 -04:00
GitHub set-date Action
904ae702d6
Update date
2021-11-03 00:59:18 +00:00
GitHub build-firmware Action
78bc8c3c51
Auto-generated configs and docs
2021-11-02 23:04:43 +00:00
Matthew Kennedy
4717210859
autoscale fields in generated structs ( #3444 )
...
* add to grammar
* parser
* parser
* example consumer
* build config tool
* commit the right jar
2021-11-02 18:59:19 -04:00
rusefi
356a73e7a5
docs
2021-11-02 17:11:44 -04:00
GitHub build-firmware Action
9e18256735
Auto-generated configs and docs
2021-11-02 19:09:24 +00:00
Matthew Kennedy
8ee86e0789
log vvt targets ( #3417 )
...
* log vvt target
* java
* make java happy probably
* sensorlogger
2021-11-02 15:03:57 -04:00
GitHub build-firmware Action
6a35bd33d2
Auto-generated configs and docs
2021-11-02 03:40:40 +00:00
Matthew Kennedy
1cee83a56c
Knock retard ( #3396 )
...
* output gauge
* knock controller
* don't need that
* inject engine ref
* test knock
Co-authored-by: Matthew Kennedy <makenne@microsoft.com>
2021-11-01 23:33:59 -04:00
GitHub set-date Action
1d7dc3e254
Update date
2021-11-02 01:02:22 +00:00
GitHub set-date Action
9179b3d34f
Update date
2021-11-01 01:02:24 +00:00
rusefillc
de0736492d
better VVT default?
2021-10-31 15:25:43 -04:00
rusefillc
178f6fe9e8
Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353
...
fail faster!
2021-10-31 12:09:11 -04:00
rusefillc
960b68424b
live data stuff goes up
2021-10-31 12:07:44 -04:00
GitHub build-firmware Action
b632832407
Auto-generated configs and docs
2021-10-31 02:31:01 +00:00
Andrey
fd34b2adee
Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353
2021-10-30 22:24:43 -04:00
Andrey
ef413188ee
Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353
2021-10-30 22:21:36 -04:00
GitHub build-firmware Action
1a13dd7463
Auto-generated configs and docs
2021-10-31 02:08:31 +00:00
Andrey
ac64f215f3
Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353
2021-10-30 22:03:19 -04:00
Andrey
f01c6fa6ae
Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353
2021-10-30 21:45:52 -04:00
Andrey
12dfc7e869
Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353
2021-10-30 21:45:37 -04:00
GitHub build-firmware Action
4aa8a793e2
Auto-generated configs and docs
2021-10-31 01:38:27 +00:00
Andrey
de8b43cf94
looks like value is never assigned
2021-10-30 21:28:55 -04:00
Andrey
cc0a93080f
Honda K cam wheels #3405
2021-10-30 21:09:58 -04:00
GitHub set-date Action
21be14a023
Update date
2021-10-31 01:07:39 +00:00
GitHub build-firmware Action
06ffa72240
Auto-generated configs and docs
2021-10-31 00:44:58 +00:00
GitHub build-firmware Action
f8a78dfe3a
Auto-generated configs and docs
2021-10-30 20:50:46 +00:00
GitHub build-firmware Action
6108675f59
Auto-generated configs and docs
2021-10-30 14:50:41 +00:00
rusefillc
a2f1cd2467
Override trigger gaps feature #2734
2021-10-30 10:45:32 -04:00
GitHub build-firmware Action
64d10511bf
Auto-generated configs and docs
2021-10-30 10:19:10 +00:00
GitHub set-date Action
03d6736e04
Update date
2021-10-30 00:57:47 +00:00
GitHub build-firmware Action
98d88a10e6
Auto-generated configs and docs
2021-10-30 00:07:43 +00:00
Andrey
14aac56c41
warning(CUSTOM_PID_DTERM, "PID: unexpected dTime")
2021-10-29 18:31:43 -04:00
GitHub build-firmware Action
c42857b642
Auto-generated configs and docs
2021-10-29 21:09:08 +00:00
rusefi
85dac3e931
Revert "lua can: one step back"
...
This reverts commit 3731496f
2021-10-29 16:32:41 -04:00
GitHub build-firmware Action
8f87e6cfc9
Auto-generated configs and docs
2021-10-29 19:52:10 +00:00
GitHub build-firmware Action
ccd889e7a2
Auto-generated configs and docs
2021-10-29 19:29:57 +00:00
rusefi
3731496fb3
lua can: one step back
2021-10-29 13:14:42 -04:00
rusefillc
558c639f82
Honda K & default VVT pid
2021-10-29 12:16:19 -04:00
GitHub build-firmware Action
adf9525c16
Auto-generated configs and docs
2021-10-29 04:20:12 +00:00
rusefillc
40bf6a93d0
VVT is no longer aux pid
2021-10-28 23:51:46 -04:00
rusefillc
6a504e0755
Revert "lua pid class #3411"
...
This reverts commit 02bbe16170
.
2021-10-28 23:41:23 -04:00
rusefillc
02bbe16170
lua pid class #3411
2021-10-28 23:35:53 -04:00
GitHub set-date Action
61e2c28911
Update date
2021-10-29 00:57:49 +00:00
Andrey
1685ec95cf
Honda K cam wheels #3405
2021-10-28 19:26:59 -04:00
Andrey
965333e410
dead magic macro
2021-10-28 19:18:50 -04:00
GitHub build-firmware Action
d42f56b8f6
Auto-generated configs and docs
2021-10-28 21:37:12 +00:00
rusefi
74d302ad50
VVT to be reported after primary
2021-10-28 16:46:54 -04:00
rusefi
2d99e7b4b5
Honda K cam wheels #3405
2021-10-28 15:57:23 -04:00
GitHub build-firmware Action
dc3a50c956
Auto-generated configs and docs
2021-10-28 18:24:50 +00:00
Andrey
68c1995044
Honda K cam wheels #3405
2021-10-28 13:49:54 -04:00
Andrey
346e617d6a
https://rusefi.com/forum/viewtopic.php?f=19&t=2177
2021-10-28 13:49:44 -04:00
GitHub build-firmware Action
d3d1d33de2
Auto-generated configs and docs
2021-10-28 17:29:44 +00:00
GitHub build-firmware Action
1e8feb2d1f
Auto-generated configs and docs
2021-10-28 16:45:50 +00:00
Andrey
695ff0d391
https://rusefi.com/forum/viewtopic.php?f=19&t=2177
2021-10-28 12:29:56 -04:00
GitHub build-firmware Action
642403db21
Auto-generated configs and docs
2021-10-28 16:17:08 +00:00
Andrey
3bf9a982d9
https://rusefi.com/forum/viewtopic.php?f=19&t=2177
2021-10-28 12:12:45 -04:00
Andrey
94b5b3a089
Honda K cam wheels #3405
2021-10-28 11:40:31 -04:00
GitHub build-firmware Action
3def7ed33b
Auto-generated configs and docs
2021-10-28 15:27:10 +00:00
Andrey
5527f77589
Honda K cam wheels #3405
2021-10-28 10:36:41 -04:00
Andrey
5fcb2f75a5
refactoring: extracting method to improve readability
2021-10-28 10:30:05 -04:00
Matthew Kennedy
41b99b0593
make lua CAN happy ( #3416 )
...
* lua can tx
* index
* make rx match
2021-10-28 08:18:56 -04:00
GitHub build-firmware Action
14a0f2100c
Auto-generated configs and docs
2021-10-28 03:23:32 +00:00
GitHub set-date Action
2495363761
Update date
2021-10-28 00:59:24 +00:00
rusefi
032d6108ba
secondary MRE
2021-10-27 19:54:45 -04:00
Andrey
df67d76968
Honda K cam wheels #3405
2021-10-26 22:47:19 -04:00
GitHub build-firmware Action
72c9537318
Auto-generated configs and docs
2021-10-27 02:14:31 +00:00
Andrey
f526383aff
UNUSED
2021-10-26 21:24:16 -04:00