Commit Graph

7630 Commits

Author SHA1 Message Date
GitHub build-firmware Action 710f35d515 Auto-generated configs and docs 2021-11-09 02:26:06 +00:00
rusefi 06e97a1794 why is meat allowed to touch machine?! 2021-11-08 20:49:12 -05:00
rusefi 22e78a97a5 nicer messages 2021-11-08 20:49:12 -05:00
GitHub build-firmware Action 0b0140db83 Auto-generated configs and docs 2021-11-09 01:26:41 +00:00
GitHub set-date Action 6038b5a6ae Update date 2021-11-09 01:00:19 +00:00
rusefi 8aaecb568e pid demo progress 2021-11-08 17:31:33 -05:00
GitHub build-firmware Action e089b8d9ac Auto-generated configs and docs 2021-11-08 22:24:44 +00:00
Scott Smith 13c496b79b
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 2c715be4b7 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 9d2f9f0d35 docs 2021-11-08 12:23:00 -05:00
Scott Smith d4132fdf01
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 45c4ccd4c4 Auto-generated configs and docs 2021-11-08 03:23:43 +00:00
GitHub set-date Action 21e7272e66 Update date 2021-11-08 01:02:17 +00:00
GitHub build-firmware Action a0cddcec54 Auto-generated configs and docs 2021-11-07 18:40:19 +00:00
GitHub build-firmware Action f0d6cd8479 Auto-generated configs and docs 2021-11-07 15:30:54 +00:00
Andrey 9b0f617664 lua pid class #3411 2021-11-07 09:53:40 -05:00
Andrey 821276197b lua pid class #3411 2021-11-07 09:49:47 -05:00
Andrey 9ac1575777 reducing complexity 2021-11-07 01:57:32 -05:00
rusefillc 5de6c2a270 typo 2021-11-07 01:51:05 -05:00
rusefillc 20784db801 refactoring - magic constant bad
cypress and kinetis both have this macro already
2021-11-07 01:34:16 -04:00
rusefillc 0af09f596c refactoring - magic constant bad
cypress and kinetis both have this macro already
2021-11-07 01:28:28 -04:00
GitHub build-firmware Action 5a14173b60 Auto-generated configs and docs 2021-11-07 04:44:16 +00:00
rusefillc 6d0dfe4542 refactoring - magic constant bad 2021-11-07 00:09:17 -04:00
rusefillc 656b8c3429 refactoring - magic constant bad 2021-11-07 00:03:16 -04:00
GitHub build-firmware Action ed44ee9b11 Auto-generated configs and docs 2021-11-07 03:59:47 +00:00
rusefillc ce45a907a7 a bit of dead code 2021-11-06 23:39:56 -04:00
GitHub build-firmware Action d2b9fec0a2 Auto-generated configs and docs 2021-11-07 03:33:26 +00:00
GitHub build-firmware Action ef4df02ab0 Auto-generated configs and docs 2021-11-07 02:14:13 +00:00
rusefillc b244c59cd8 a bit of dead code 2021-11-06 21:19:56 -04:00
GitHub build-firmware Action e065a6ca4c Auto-generated configs and docs 2021-11-07 01:05:29 +00:00
rusefillc 4f738b366e a bit of dead code 2021-11-06 21:01:01 -04:00
Andrey 6111355e6c Remove Miata MX5 NB1 trigger #3488 2021-11-06 20:24:41 -04:00
GitHub build-firmware Action 05b494a726 Auto-generated configs and docs 2021-11-06 23:15:42 +00:00
rusefillc 7b8821955b a bit of dead code 2021-11-06 18:43:19 -04:00
GitHub build-firmware Action b1c27c95d5 Auto-generated configs and docs 2021-11-06 22:37:34 +00:00
rusefillc 1cbe2f7bef PROTEUS_LUA_DEMO 2021-11-06 18:24:59 -04:00
GitHub build-firmware Action 6a9c38f934 Auto-generated configs and docs 2021-11-06 22:15:32 +00:00
GitHub build-firmware Action 8b37ba9048 Auto-generated configs and docs 2021-11-06 19:17:51 +00:00
GitHub build-firmware Action 702b166aa8 Auto-generated configs and docs 2021-11-06 18:12:59 +00:00
GitHub build-firmware Action 6801d99ca5 Auto-generated configs and docs 2021-11-06 17:41:14 +00:00
GitHub build-firmware Action b2536faa9e Auto-generated configs and docs 2021-11-06 17:17:08 +00:00
GitHub build-firmware Action d9354f6d9d Auto-generated configs and docs 2021-11-06 13:26:06 +00:00
GitHub build-firmware Action ab668c5bed Auto-generated configs and docs 2021-11-06 03:28:22 +00:00
Scott Smith f9e36f5ea4
Configuration for HPFP control algorithm. (#3475) 2021-11-05 23:15:35 -04:00
Scott Smith 675460fafb
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 5e4abadd48 Auto-generated configs and docs 2021-11-06 02:01:07 +00:00
Scott Smith 16378dcf59
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 744bf535e6 Update date 2021-11-06 00:59:21 +00:00
GitHub build-firmware Action acce4630df Auto-generated configs and docs 2021-11-06 00:31:14 +00:00
Matthew Kennedy 7590e4c679
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 16f8d60d29 Auto-generated configs and docs 2021-11-05 23:52:02 +00:00
GitHub build-firmware Action 5adc7d27b8 Auto-generated configs and docs 2021-11-05 22:21:29 +00:00
Matthew Kennedy 3348c0404b
configurable etb maximum (#3469)
* etb maximum

* update tests and test new behavior
2021-11-05 18:16:19 -04:00
Scott Smith 6d38fe1eb3
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 f6a20ca1ea lua curve progress 2021-11-05 16:08:48 -04:00
Andrey b4f1f7b8d2 lua curve progress 2021-11-05 16:08:34 -04:00
Matthew Kennedy 036c1b17d3
make master happy (#3467) 2021-11-05 16:01:13 -04:00
GitHub build-firmware Action 9e8d55177a Auto-generated configs and docs 2021-11-05 19:42:05 +00:00
Matthew Kennedy 2b9696442e
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 267e631f42 Auto-generated configs and docs 2021-11-05 18:40:32 +00:00
rusefillc 610c2b0ad1 lua curve progress 2021-11-05 10:34:12 -04:00
rusefillc b7feea1aa5 minor todo 2021-11-05 10:01:58 -04:00
GitHub build-firmware Action 618e7edc2c Auto-generated configs and docs 2021-11-05 11:19:56 +00:00
Matthew Kennedy 365691cb37
nissan 4yl crank pattern (#3462)
* refactoring nissan trigger

* comments

* plumbing

* b
2021-11-05 07:15:03 -04:00
rusefillc 1ead914f93 more curves! also names for curves 2021-11-04 23:59:04 -04:00
GitHub build-firmware Action 310336eb7e Auto-generated configs and docs 2021-11-05 03:37:40 +00:00
rusefillc 77be92e2c3 more curves! also names for curves 2021-11-04 23:22:37 -04:00
rusefillc 85984928ca more curves! also names for curves 2021-11-04 23:19:44 -04:00
GitHub build-firmware Action bcd2d866d7 Auto-generated configs and docs 2021-11-05 03:03:11 +00:00
GitHub set-date Action ecb9dc2e70 Update date 2021-11-05 00:59:35 +00:00
GitHub build-firmware Action 72c4c0e14c Auto-generated configs and docs 2021-11-04 23:48:48 +00:00
rusefi 1d9aa8bd12 turboSpeedSensorMultiplier 2021-11-04 19:35:58 -04:00
racer-coder 2612db570f
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 1b659a288d Auto-generated configs and docs 2021-11-04 14:24:01 +00:00
rusefillc db310a4bd0 most dead miata config 2021-11-04 09:56:05 -04:00
Matthew Kennedy 5456e65c82
uppppppdate (#3455)
Co-authored-by: Matthew Kennedy <makenne@microsoft.com>
2021-11-04 05:52:25 -04:00
Matthew Kennedy 59e9d05fc7
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 d6d0200b14 Update date 2021-11-04 00:59:56 +00:00
GitHub build-firmware Action d07094338e Auto-generated configs and docs 2021-11-03 23:58:42 +00:00
Matthew Kennedy 24224729a3
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 e1b085cf32 Auto-generated configs and docs 2021-11-03 21:10:50 +00:00
Andrey 44fa9b028b lua interpolate 2021-11-02 23:35:48 -04:00
Andrey e4a872c251 refatoring: splitting lua hooks into multiple files 2021-11-02 23:27:48 -04:00
GitHub set-date Action 0678690515 Update date 2021-11-03 00:59:18 +00:00
GitHub build-firmware Action c63ac71620 Auto-generated configs and docs 2021-11-02 23:04:43 +00:00
Matthew Kennedy 980a7cc833
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 e1a78cce41 docs 2021-11-02 17:11:44 -04:00
GitHub build-firmware Action cf51fab5f0 Auto-generated configs and docs 2021-11-02 19:09:24 +00:00
Matthew Kennedy 5b35aa8f21
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 16d377b4ee Auto-generated configs and docs 2021-11-02 03:40:40 +00:00
Matthew Kennedy 75a2b5ef02
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 6668bc382d Update date 2021-11-02 01:02:22 +00:00
GitHub set-date Action 3ab3717da6 Update date 2021-11-01 01:02:24 +00:00
rusefillc 7e4ade6b0f better VVT default? 2021-10-31 15:25:43 -04:00
rusefillc ada747baef 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 e1402818bc live data stuff goes up 2021-10-31 12:07:44 -04:00
GitHub build-firmware Action 4d62ed9a09 Auto-generated configs and docs 2021-10-31 02:31:01 +00:00
Andrey 2de0409061 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 d0b2ce5654 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 38c67baed7 Auto-generated configs and docs 2021-10-31 02:08:31 +00:00
Andrey 97e34ad0d1 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 432bad64ed 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 b6fad6ec81 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 8ac4341cfa Auto-generated configs and docs 2021-10-31 01:38:27 +00:00
Andrey 75ab0040a1 looks like value is never assigned 2021-10-30 21:28:55 -04:00
Andrey 61777564d4 Honda K cam wheels #3405 2021-10-30 21:09:58 -04:00
GitHub set-date Action 4894eabe84 Update date 2021-10-31 01:07:39 +00:00
GitHub build-firmware Action 509f7997ef Auto-generated configs and docs 2021-10-31 00:44:58 +00:00
GitHub build-firmware Action 1a979805ce Auto-generated configs and docs 2021-10-30 20:50:46 +00:00
GitHub build-firmware Action 0c7c578912 Auto-generated configs and docs 2021-10-30 14:50:41 +00:00
rusefillc c62fedbe34 Override trigger gaps feature #2734 2021-10-30 10:45:32 -04:00
GitHub build-firmware Action 4bb9def2f9 Auto-generated configs and docs 2021-10-30 10:19:10 +00:00
GitHub set-date Action e81798d68f Update date 2021-10-30 00:57:47 +00:00
GitHub build-firmware Action 9b4fb01be0 Auto-generated configs and docs 2021-10-30 00:07:43 +00:00
Andrey 747bbd9c6a warning(CUSTOM_PID_DTERM, "PID: unexpected dTime") 2021-10-29 18:31:43 -04:00
GitHub build-firmware Action 1ac65638e1 Auto-generated configs and docs 2021-10-29 21:09:08 +00:00
rusefi c3bfaeb63c Revert "lua can: one step back"
This reverts commit ed89d5da
2021-10-29 16:32:41 -04:00
GitHub build-firmware Action d51521efe4 Auto-generated configs and docs 2021-10-29 19:52:10 +00:00
GitHub build-firmware Action ec2ed814c3 Auto-generated configs and docs 2021-10-29 19:29:57 +00:00
rusefi ed89d5da57 lua can: one step back 2021-10-29 13:14:42 -04:00
rusefillc 4c164aaf5c Honda K & default VVT pid 2021-10-29 12:16:19 -04:00
GitHub build-firmware Action 0d58a8ed01 Auto-generated configs and docs 2021-10-29 04:20:12 +00:00
rusefillc 5f4fa50682 VVT is no longer aux pid 2021-10-28 23:51:46 -04:00
rusefillc 64ecbb16ab Revert "lua pid class #3411"
This reverts commit dde80bb900.
2021-10-28 23:41:23 -04:00
rusefillc dde80bb900 lua pid class #3411 2021-10-28 23:35:53 -04:00
GitHub set-date Action 05c13b0ebb Update date 2021-10-29 00:57:49 +00:00
Andrey a6a969390f Honda K cam wheels #3405 2021-10-28 19:26:59 -04:00
Andrey fbd37ae0e7 dead magic macro 2021-10-28 19:18:50 -04:00
GitHub build-firmware Action afba28fbe5 Auto-generated configs and docs 2021-10-28 21:37:12 +00:00
rusefi f0f4513998 VVT to be reported after primary 2021-10-28 16:46:54 -04:00
rusefi 5ca1db80bc Honda K cam wheels #3405 2021-10-28 15:57:23 -04:00
GitHub build-firmware Action 3b989ddbf2 Auto-generated configs and docs 2021-10-28 18:24:50 +00:00
Andrey 463515e282 Honda K cam wheels #3405 2021-10-28 13:49:54 -04:00
Andrey c57f9c325f https://rusefi.com/forum/viewtopic.php?f=19&t=2177 2021-10-28 13:49:44 -04:00
GitHub build-firmware Action 07fc6bdac7 Auto-generated configs and docs 2021-10-28 17:29:44 +00:00
GitHub build-firmware Action 83aa4c625a Auto-generated configs and docs 2021-10-28 16:45:50 +00:00
Andrey 30c91040a2 https://rusefi.com/forum/viewtopic.php?f=19&t=2177 2021-10-28 12:29:56 -04:00
GitHub build-firmware Action b0bcdaefd6 Auto-generated configs and docs 2021-10-28 16:17:08 +00:00
Andrey aae1e5d5c5 https://rusefi.com/forum/viewtopic.php?f=19&t=2177 2021-10-28 12:12:45 -04:00
Andrey de350131e6 Honda K cam wheels #3405 2021-10-28 11:40:31 -04:00
GitHub build-firmware Action b82ff0d823 Auto-generated configs and docs 2021-10-28 15:27:10 +00:00
Andrey c96e52d6f3 Honda K cam wheels #3405 2021-10-28 10:36:41 -04:00
Andrey b5ae711e2f refactoring: extracting method to improve readability 2021-10-28 10:30:05 -04:00
Matthew Kennedy 680518d13c
make lua CAN happy (#3416)
* lua can tx

* index

* make rx match
2021-10-28 08:18:56 -04:00
GitHub build-firmware Action 93e17986a9 Auto-generated configs and docs 2021-10-28 03:23:32 +00:00
GitHub set-date Action 63ed73da03 Update date 2021-10-28 00:59:24 +00:00
rusefi 75d8d334b7 secondary MRE 2021-10-27 19:54:45 -04:00
Andrey 484d078752 Honda K cam wheels #3405 2021-10-26 22:47:19 -04:00
GitHub build-firmware Action fd82f0e42d Auto-generated configs and docs 2021-10-27 02:14:31 +00:00
Andrey e6faf2fa15 UNUSED 2021-10-26 21:24:16 -04:00
GitHub build-firmware Action 49575edb9a Auto-generated configs and docs 2021-10-27 01:17:33 +00:00
Andrey 45280d7435 MRE_SECONDARY_CAN 2021-10-26 21:05:38 -04:00
GitHub set-date Action 975c679e80 Update date 2021-10-27 00:58:36 +00:00
rusefi 30f9c57f70 Honda K cam wheels #3405 2021-10-26 17:29:26 -04:00
rusefi 475edecee5 this warning should be promoted to fatal! 2021-10-26 17:10:53 -04:00
GitHub build-firmware Action 0b4d70f99a Auto-generated configs and docs 2021-10-26 21:08:27 +00:00
Matthew Kennedy 148dbdeec6
Lua CAN rx data (#3414)
* rx data

* comments

* multi bus
2021-10-26 16:48:57 -04:00
GitHub build-firmware Action 8aa7b7e8c4 Auto-generated configs and docs 2021-10-26 19:17:54 +00:00
GitHub set-date Action db3a8daa0b Update date 2021-10-26 01:01:51 +00:00
GitHub build-firmware Action 2034aff631 Auto-generated configs and docs 2021-10-25 21:53:03 +00:00
GitHub build-firmware Action 547896885e Auto-generated configs and docs 2021-10-25 19:48:12 +00:00
Matthew Kennedy 558a6d01fc
etb pwm limit (#3408)
* etb pwm limit

* missed an arg

Co-authored-by: Matthew Kennedy <makenne@microsoft.com>
2021-10-25 15:35:23 -04:00
GitHub build-firmware Action bab01ff701 Auto-generated configs and docs 2021-10-25 16:27:39 +00:00
GitHub build-firmware Action 020c1485e6 Auto-generated configs and docs 2021-10-25 15:36:44 +00:00
rusefillc 4ef959a60e generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-25 11:05:45 -04:00
rusefillc 8c95c5adf2 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-25 10:59:24 -04:00
rusefillc 76726aad7e generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-25 10:57:02 -04:00
GitHub build-firmware Action d512209146 Auto-generated configs and docs 2021-10-25 03:55:16 +00:00
GitHub build-firmware Action 0b3be19c94 Auto-generated configs and docs 2021-10-25 03:28:00 +00:00
GitHub set-date Action b5b4d63cee Update date 2021-10-25 01:02:26 +00:00
GitHub build-firmware Action d15c394e91 Auto-generated configs and docs 2021-10-25 00:35:49 +00:00
rusefi bedfc8517f generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 20:06:57 -04:00
GitHub build-firmware Action 55873724d6 Auto-generated configs and docs 2021-10-24 23:33:09 +00:00
Andrey b9dfc32722 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 19:19:16 -04:00
Matthew Kennedy e8d612eef8
can vss (#3402) 2021-10-24 19:04:47 -04:00
GitHub build-firmware Action 8df5b101c3 Auto-generated configs and docs 2021-10-24 22:26:41 +00:00
Andrey 229419d04b Honda K cam wheels #3405 2021-10-24 17:12:19 -04:00
Andrey d683a06e20 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 17:06:59 -04:00
Andrey 785c4db197 docs 2021-10-24 17:05:37 -04:00
GitHub build-firmware Action fd8f284b0f Auto-generated configs and docs 2021-10-24 20:24:33 +00:00
GitHub build-firmware Action 933795b86e Auto-generated configs and docs 2021-10-24 20:06:18 +00:00
rusefillc 8a3f93d6f6 progress 2021-10-24 15:30:17 -04:00
GitHub build-firmware Action 9d5db767d2 Auto-generated configs and docs 2021-10-24 19:28:08 +00:00
rusefillc 08bda5e1e4 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 14:18:23 -04:00
rusefillc 87b3df1cf5 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 14:17:37 -04:00
rusefillc 5f0a9b5363 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 14:08:21 -04:00
rusefillc c255e630ca generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 13:58:04 -04:00
GitHub build-firmware Action a10ea5f4c2 Auto-generated configs and docs 2021-10-24 17:18:25 +00:00
rusefillc bf7ae2c76e generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 13:10:38 -04:00
rusefillc 8f8bb444c1 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 13:01:40 -04:00
rusefillc 4192aee6de generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 12:49:51 -04:00
Andrey 4b4314e86d generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 12:15:53 -04:00
GitHub build-firmware Action 3bc168089b Auto-generated configs and docs 2021-10-24 14:17:05 +00:00
rusefillc eead8fa1f6 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 09:31:32 -04:00
rusefillc c6d47c1a8a generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 09:16:11 -04:00
Matthew Kennedy 383d8caad9
Lua CAN RX (#3403)
* wiring

* static

* implementation

* comment

* unit tests happy

* guard

* guard smarter, not harder

* guard smarter not harder

* guard even smarter, not even harder

* don't need that
2021-10-24 08:37:04 -04:00
GitHub build-firmware Action fdc3a83838 Auto-generated configs and docs 2021-10-24 12:31:15 +00:00
GitHub build-firmware Action e09432d771 Auto-generated configs and docs 2021-10-24 05:22:53 +00:00
rusefillc ece2c198be generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 00:44:09 -04:00
rusefillc 71fd316f70 Lua: CAN receive integration? callback? #3320 2021-10-24 00:18:28 -04:00
rusefillc add98ca5ed generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-24 00:00:31 -04:00
rusefillc 4132fe9591 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-23 23:46:08 -04:00
rusefillc 923f5d1a6c generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-23 23:42:22 -04:00
rusefillc 29faddf338 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-23 23:40:14 -04:00
GitHub build-firmware Action 2b1ad1cfe0 Auto-generated configs and docs 2021-10-24 03:19:18 +00:00
rusefillc 0749d0d180 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-23 23:14:46 -04:00
GitHub build-firmware Action cba22adcd1 Auto-generated configs and docs 2021-10-24 03:08:45 +00:00
rusefillc c45003060c generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-23 23:00:04 -04:00
rusefillc 5fdc884e71 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-23 22:07:44 -04:00
GitHub build-firmware Action 5329c73206 Auto-generated configs and docs 2021-10-24 02:01:12 +00:00
rusefillc 3f3a17e366 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-23 21:47:03 -04:00
GitHub build-firmware Action fa6011682a Auto-generated configs and docs 2021-10-24 01:38:06 +00:00
rusefillc cd86102042 generate java enum from C enum? generate both C and java from yaml? #2102 2021-10-23 20:24:21 -04:00
GitHub build-firmware Action 013cd08b35 Auto-generated configs and docs 2021-10-23 23:05:27 +00:00
rusefi 274a6d8ba6 triggerinfo progress 2021-10-23 19:01:31 -04:00
GitHub build-firmware Action ee5ce7ca82 Auto-generated configs and docs 2021-10-23 17:44:51 +00:00
GitHub set-date Action 25d66ca053 Update date 2021-10-23 01:04:11 +00:00
Matthew Kennedy 8a841bb52c
lua can set sensors (#3389)
* add sensor unsubscribe

* sensor hook

* test it!

* virtual destructor makes us sad

* ensure deinit
2021-10-22 16:36:29 -04:00
GitHub build-firmware Action 37bf852368 Auto-generated configs and docs 2021-10-22 20:03:15 +00:00
Matthew Kennedy 0fe2721556
use name of pwm (#3393) 2021-10-22 15:23:53 -04:00
GitHub set-date Action 39c28f74ca Update date 2021-10-22 01:10:25 +00:00
Andrey b750755369 findSensorTypeByName 2021-10-21 14:33:59 -04:00
Andrey 37594d5646 findSensorTypeByName 2021-10-20 22:21:42 -04:00
rusefillc ffc4e97ba5 enum reader progress 2021-10-20 21:46:43 -04:00
GitHub set-date Action d0f033cd9b Update date 2021-10-21 01:07:47 +00:00
GitHub build-firmware Action f7f8184faa Auto-generated configs and docs 2021-10-20 20:10:51 +00:00
Matthew Kennedy d008b0f8c3
static (#3381) 2021-10-20 15:19:48 -04:00
GitHub build-firmware Action 563fd853b0 Auto-generated configs and docs 2021-10-20 17:09:44 +00:00
rusefillc eb05f4594e very old very dead code 2021-10-20 12:57:07 -04:00
rusefillc e6b92ddb0c very old very dead code 2021-10-20 10:45:43 -04:00
rusefillc 1493973bea very old very dead code 2021-10-20 10:38:36 -04:00
GitHub set-date Action d7c0a37cb1 Update date 2021-10-20 01:04:40 +00:00
GitHub build-firmware Action 1694b81431 Auto-generated configs and docs 2021-10-20 00:09:37 +00:00
rusefillc 0d5e605f75 Aux analog inputs via CAN #3378 2021-10-19 20:04:03 -04:00
GitHub build-firmware Action 9b5d7e24eb Auto-generated configs and docs 2021-10-19 23:54:00 +00:00
rusefillc 3a7013a72c Aux analog inputs via CAN #3378 2021-10-19 19:48:18 -04:00
GitHub build-firmware Action 11a63ca992 Auto-generated configs and docs 2021-10-19 18:31:30 +00:00
rusefillc e68568b766 docs 2021-10-19 11:05:20 -04:00
GitHub build-firmware Action a1ed201877 Auto-generated configs and docs 2021-10-19 01:40:29 +00:00
GitHub set-date Action 8bd3b79b89 Update date 2021-10-19 01:05:14 +00:00
GitHub build-firmware Action 22a811d311 Auto-generated configs and docs 2021-10-18 04:47:20 +00:00
GitHub set-date Action 837d8f18b4 Update date 2021-10-18 01:04:09 +00:00
Matthew Kennedy efa08b329d
Fix simulator (#3360)
* fix simulator

* print out halt reason

* option to close simulator after time

* workflow calls it

* test with the bug still present

* ...and fix the bug
2021-10-17 20:07:25 -04:00
GitHub build-firmware Action 724a82c36f Auto-generated configs and docs 2021-10-17 20:29:05 +00:00
GitHub build-firmware Action f2795e6485 Auto-generated configs and docs 2021-10-17 19:13:59 +00:00
GitHub build-firmware Action c66fde0e15 Auto-generated configs and docs 2021-10-17 17:29:21 +00:00
GitHub build-firmware Action 01a5e0d087 Auto-generated configs and docs 2021-10-17 17:02:18 +00:00
GitHub build-firmware Action 679239c7f8 Auto-generated configs and docs 2021-10-17 04:35:27 +00:00
rusefillc 2431fa79b3 refactoring - extracting idle state 2021-10-17 00:30:26 -04:00
GitHub build-firmware Action 25ff3fe2d7 Auto-generated configs and docs 2021-10-17 03:59:20 +00:00
rusefillc 4533ce4764 refactoring - extracting idle state 2021-10-16 23:55:29 -04:00
rusefillc 5f7ffd32a1 refactoring 2021-10-16 23:40:02 -04:00
rusefillc 296f83ea4d refactoring 2021-10-16 23:18:09 -04:00
GitHub build-firmware Action 6e67697284 Auto-generated configs and docs 2021-10-17 03:07:01 +00:00
GitHub build-firmware Action 0dc09447c5 Auto-generated configs and docs 2021-10-17 02:51:52 +00:00
GitHub build-firmware Action d6fd98757a Auto-generated configs and docs 2021-10-17 02:38:42 +00:00
rusefillc ba640a16f5 refactoring 2021-10-16 22:08:47 -04:00
GitHub build-firmware Action c8c937cf41 Auto-generated configs and docs 2021-10-17 01:53:40 +00:00
rusefillc 6576acc39a Remove engine load acceleration enrichment fix #3357 2021-10-16 21:49:38 -04:00
rusefillc f1d3010c15 Remove engine load acceleration enrichment fix #3357 2021-10-16 21:33:45 -04:00
GitHub build-firmware Action 07dc45cc57 Auto-generated configs and docs 2021-10-17 01:29:33 +00:00
rusefillc 61e2b3d5db Remove engine load acceleration enrichment fix #3357 2021-10-16 21:24:05 -04:00
GitHub build-firmware Action 981fc58297 Auto-generated configs and docs 2021-10-17 01:13:47 +00:00
rusefillc 292173f818 progress - live doc generator works again! 2021-10-16 21:08:50 -04:00
GitHub set-date Action e6973e2446 Update date 2021-10-17 01:01:35 +00:00
rusefillc 4cc1c352c2 better file locations 2021-10-16 20:17:01 -04:00
rusefillc d84cf5eea8 splitting accelerations 2021-10-16 20:16:40 -04:00
rusefillc 3162d9cc56 let's see if CI would fail, i.e. let's see if this logic was covered 2021-10-16 19:03:36 -04:00
GitHub build-firmware Action db30c8822c Auto-generated configs and docs 2021-10-16 22:23:29 +00:00
rusefi 52cb9e8c46 Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353
java version of the enum
2021-10-16 18:15:10 -04:00
rusefi 0635060e4f refactoring - auto-generating names 2021-10-16 17:49:02 -04:00
rusefi d438f9f9cb refactoring - making enum compatible with tools 2021-10-16 17:37:32 -04:00
GitHub set-date Action ac25b8becc Update date 2021-10-16 01:22:59 +00:00
GitHub build-firmware Action b879a87773 Auto-generated configs and docs 2021-10-15 01:57:26 +00:00
GitHub set-date Action 0e70760a17 Update date 2021-10-15 01:04:46 +00:00
GitHub build-firmware Action f03309569a Auto-generated configs and docs 2021-10-14 23:06:56 +00:00
rusefillc 37db1559df Whatever we call it, whatever we implement it - we need live data / remote view into rusEFI actual state #3353
progress
2021-10-14 18:36:47 -04:00
GitHub build-firmware Action 5d2d802e43 Auto-generated configs and docs 2021-10-14 21:57:36 +00:00
GitHub build-firmware Action 6eec705f46 Auto-generated configs and docs 2021-10-14 20:00:32 +00:00
rusefillc 01d4b7ef7a Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353
progress
2021-10-14 15:18:13 -04:00
rusefillc 4871e8ba42 Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353
dead code
2021-10-14 15:17:59 -04:00
rusefillc ea87d9c9be Whatever we call it, no matter how we do it - we need live data / remote view into rusEFI actual state #3353
dead code
2021-10-14 15:17:09 -04:00
GitHub build-firmware Action d7d2834d51 Auto-generated configs and docs 2021-10-14 04:53:43 +00:00
rusefillc ff864ec0bf Whatever we call it, how ever we implement it - we need live data / remote view into rusEFI actual state #3353 2021-10-14 00:47:26 -04:00
rusefillc 6f3a453dc9 Whatever we call it, whatever we implement it - we need live data / remote view into rusEFI actual state #3353 2021-10-14 00:30:54 -04:00
rusefillc 1435e82069 Whatever we call it, whatever we implement it - we need live data / remote view into rusEFI actual state #3353
refactoring
2021-10-14 00:11:08 -04:00
GitHub build-firmware Action 619fbb5a3e Auto-generated configs and docs 2021-10-14 03:59:29 +00:00
GitHub build-firmware Action f979accd39 Auto-generated configs and docs 2021-10-13 01:18:52 +00:00
GitHub build-firmware Action efbfd8658d Auto-generated configs and docs 2021-10-12 22:49:17 +00:00
rusefillc 66e0ecf0f2 honda 2021-10-12 18:31:48 -04:00
GitHub build-firmware Action 3d5aa5a55a Auto-generated configs and docs 2021-10-12 22:07:56 +00:00
GitHub build-firmware Action 076625ee97 Auto-generated configs and docs 2021-10-12 20:10:51 +00:00
GitHub build-firmware Action 1be5f8ce9f Auto-generated configs and docs 2021-10-12 04:16:09 +00:00
GitHub build-firmware Action d982229d1b Auto-generated configs and docs 2021-10-12 03:00:15 +00:00
GitHub build-firmware Action cb325238db Auto-generated configs and docs 2021-10-12 01:27:57 +00:00
rusefillc 7e57239cae hyundai 2021-10-11 15:04:27 -04:00
rusefillc 376b227480 hyundai 2021-10-11 14:22:35 -04:00
GitHub build-firmware Action 676cd8d76e Auto-generated configs and docs 2021-10-11 17:28:51 +00:00
rusefillc b731f90474 hyundai 2021-10-11 13:21:42 -04:00
rusefillc 2a87208380 hyundai 2021-10-11 12:37:24 -04:00
GitHub build-firmware Action 1d9b119aa1 Auto-generated configs and docs 2021-10-11 03:21:06 +00:00
GitHub build-firmware Action 3d7aa1eeb7 Auto-generated configs and docs 2021-10-11 02:37:53 +00:00
rusefi 7c378c7c6c VAG ETB calibration is a mess? 2021-10-10 22:23:33 -04:00
GitHub build-firmware Action b0ad0dab83 Auto-generated configs and docs 2021-10-11 01:50:28 +00:00
GitHub set-date Action d0d5967bef Update date 2021-10-11 01:02:18 +00:00
rusefi 9b140e57a1 etb_test_hw 2021-10-10 17:10:04 -04:00
rusefi fe69616859 etb_test_hw 2021-10-10 16:29:45 -04:00
GitHub build-firmware Action 65aac2ab1a Auto-generated configs and docs 2021-10-10 04:03:14 +00:00
GitHub set-date Action 1b82292f74 Update date 2021-10-10 01:34:39 +00:00
rusefi 51ffde87c2 Hyundai 2021-10-09 19:18:28 -04:00
GitHub build-firmware Action ab6d0ddccb Auto-generated configs and docs 2021-10-09 20:54:57 +00:00
GitHub build-firmware Action 04e302aa41 Auto-generated configs and docs 2021-10-09 20:36:17 +00:00
Matthew Kennedy ed7f7e693c
per-MCU lua size (#3339)
* per-MCU lua size

* simulator happy
2021-10-09 09:02:30 -04:00
rusefi 69ac9f7577 looks like a typo 2021-10-08 23:14:11 -04:00
GitHub set-date Action 74a7985cd9 Update date 2021-10-09 00:58:23 +00:00
rusefi e73ed5bcc5 luamemory does same but better 2021-10-08 14:48:16 -04:00
GitHub build-firmware Action 68000ad466 Auto-generated configs and docs 2021-10-08 16:25:09 +00:00
GitHub build-firmware Action 9b855c2466 Auto-generated configs and docs 2021-10-08 10:37:46 +00:00
GitHub set-date Action 20a2dc287a Update date 2021-10-08 01:04:42 +00:00
GitHub build-firmware Action 6deac29a6d Auto-generated configs and docs 2021-10-07 23:20:37 +00:00
GitHub build-firmware Action c22ef1f960 Auto-generated configs and docs 2021-10-07 21:51:38 +00:00
rusefillc ce0913b9b1 docs 2021-10-07 09:31:34 -04:00
GitHub set-date Action 86279d9460 Update date 2021-10-07 01:02:32 +00:00
rusefi d01c8dbd93 some cheap used junkyard Accelerometer #2225
MM5.10
2021-10-06 15:05:29 -04:00
GitHub build-firmware Action 07d25f9e66 Auto-generated configs and docs 2021-10-06 18:15:48 +00:00
GitHub build-firmware Action 325a2a5daa Auto-generated configs and docs 2021-10-06 18:01:16 +00:00
Andreika bc4a068c9c
[DRAFT] IAC H-Bridge Microstepping (#3213)
* fix for stepperHbridgeHardware

* new config fields for microstepping

* add stepper dir pin mode to the dialog

* refactor stepper hw dialog & add microstepping panel

* microstepper modes enum

* stepperDcInvertedPins needed by Hellen

* add sleep() for stepper and divisor for pause()

* microstepping impl.

* make unit-tests more happy

* small progress

* fix etb-stepper dlg conflict

Co-authored-by: Andrei <andreikagit@users.noreply.github.com>
2021-10-06 13:57:04 -04:00
GitHub build-firmware Action d8363d5cba Auto-generated configs and docs 2021-10-06 16:18:32 +00:00
Andreika d917cc8cc2
[DRAFT] Fix cranking->idling taper phase for useSeparate*ForIdle tables (#3168)
* Rename Phase::CrankToRunTaper -> CrankToIdleTaper

* Change isIdling() to isIdlingOrTaper()

* test_idle_controller.cpp

* useSeparateIdleTablesForCrankingTaper setting

Co-authored-by: Andrei <andreikagit@users.noreply.github.com>
2021-10-06 12:05:20 -04:00
rusefillc 3ff5745b45 some cheap used junkyard Accelerometer #2225
MM5.10
2021-10-06 11:07:46 -04:00
GitHub build-firmware Action 41e8888cb4 Auto-generated configs and docs 2021-10-06 04:38:37 +00:00
GitHub build-firmware Action 21916f4daa Auto-generated configs and docs 2021-10-06 04:31:46 +00:00
rusefillc 49e87825f9 some cheap used junkyard Accelerometer #2225
MM5.10
2021-10-06 00:19:33 -04:00
GitHub set-date Action 60e14282a1 Update date 2021-10-06 01:01:32 +00:00
Matthew Kennedy 9797d25b7c
getOrZero (#3319) 2021-10-05 19:59:07 -04:00
GitHub build-firmware Action b1d30eacb9 Auto-generated configs and docs 2021-10-05 21:04:26 +00:00
GitHub build-firmware Action 0d91c14ef2 Auto-generated configs and docs 2021-10-05 20:25:54 +00:00
rusefillc 77c4e83ebc some cheap used junkyard Accelerometer #2225
MM5.10
2021-10-05 16:21:41 -04:00
GitHub build-firmware Action 5a53fb3d28 Auto-generated configs and docs 2021-10-05 20:15:00 +00:00
rusefillc 8682f4dfe7 some cheap used junkyard Accelerometer #2225
MM5.10
2021-10-05 16:10:29 -04:00
GitHub build-firmware Action 2181fb2857 Auto-generated configs and docs 2021-10-05 19:43:43 +00:00
Matthew Kennedy a3bc507f9b
clean up debug channels in status_loop.cpp (#3317)
* FSIO is going away eventually

* dead modes

* rx8 hmm

* break out tps debug
2021-10-05 15:27:08 -04:00
GitHub set-date Action 57b5c06431 Update date 2021-10-05 01:00:40 +00:00
rusefillc 8a2472126a https://rusefi.com/forum/viewtopic.php?f=5&t=2143 Suzuki G13B tooth pattern 2021-10-04 19:59:51 -04:00
Andrey b0ae87054a https://rusefi.com/forum/viewtopic.php?f=5&t=2143 Suzuki G13B tooth pattern 2021-10-04 19:29:58 -04:00
rusefillc 16049a07e8 https://rusefi.com/forum/viewtopic.php?p=42468#p42468 2021-10-04 19:10:31 -04:00
GitHub build-firmware Action ed8eb9909a Auto-generated configs and docs 2021-10-04 23:00:48 +00:00
rusefillc 4901a69d17 https://rusefi.com/forum/viewtopic.php?p=42468#p42468 2021-10-04 18:43:37 -04:00
Matthew Kennedy 9806373dac
dead map (#3316) 2021-10-04 18:33:10 -04:00
Matthew Kennedy db12cdbe19
put MAP in the sensor model (#3292)
* map averaging in sensor model

* deadly, deadly code!

* mpxh

* Revert "deadly, deadly code!"

This reverts commit 346fe25267966a313145a809792dced84be348cf.

* comments

* sensor types

* last sensor

* channel init

* correct spot

* deinit properly

* simplify

* fix

* mocks

* map init test

* showInfo

* comment

* singleton identity function

* sensor info print

* multiple cylinder averaging buffer

* comments

Co-authored-by: Matthew Kennedy <makenne@microsoft.com>
2021-10-04 17:18:08 -04:00