-
Notifications
You must be signed in to change notification settings - Fork 2.3k
skeleton/digijet.cpp: Add new NOT WORKING clone #14685
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
Draft
stonedDiscord
wants to merge
19
commits into
mamedev:master
Choose a base branch
from
stonedDiscord:digijet2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+249
−14
Draft
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
70df24a
dump mine
stonedDiscord 21cabc8
io map
stonedDiscord 4539391
adc channel documentation
stonedDiscord 954b896
adc
stonedDiscord c44d5d9
consolidate io map, add layout
stonedDiscord 2b369c6
save adc
stonedDiscord 21180fc
Merge remote-tracking branch 'upstream/master' into digijet2
stonedDiscord 09ccbb6
rpm timer
stonedDiscord 26b06b6
blinky
stonedDiscord eed4efb
labels
stonedDiscord 990c542
remove wd led
stonedDiscord 7d1ca13
watchdog timer
stonedDiscord 0c11a22
ins and documentation
stonedDiscord 207ae2e
lambda in
stonedDiscord 839f7b6
cpu can disable the interrupts by an AND gate
stonedDiscord a26f5d2
replace p2 with lambda
stonedDiscord d6dccf2
Merge remote-tracking branch 'upstream/master' into digijet2
stonedDiscord 4e2e401
run srcclean
stonedDiscord 8dd7c1a
indent inputs
stonedDiscord File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| <?xml version="1.0"?> | ||
| <!-- | ||
| license:CC0-1.0 | ||
|
|
||
| debugging display for Digijet ECU | ||
| --> | ||
|
|
||
| <mamelayout version="2"> | ||
|
|
||
| <element name="led" defstate="0"> | ||
| <disk state="0"> <color red="0.1" green="0.1" blue="0.1" /> </disk> | ||
| <disk state="1"> <color red="1.0" green="1.0" blue="0.1" /> </disk> | ||
| </element> | ||
|
|
||
| <element name="background"> | ||
| <rect> | ||
| <bounds left="0" top="0" right="10" bottom="10" /> | ||
| <color red="0.2" green="0.2" blue="0.2" /> | ||
| </rect> | ||
| </element> | ||
|
|
||
| <element name="label_fuel"> | ||
| <text string="Fuel pump"> | ||
| <bounds left="0" top="0" right="1" bottom="0.4" /> | ||
| <color red="1.0" green="1.0" blue="1.0" /> | ||
| </text> | ||
| </element> | ||
| <element name="label_inject"> | ||
| <text string="Injectors"> | ||
| <bounds left="0" top="0" right="1" bottom="0.4" /> | ||
| <color red="1.0" green="1.0" blue="1.0" /> | ||
| </text> | ||
| </element> | ||
| <element name="label_check"> | ||
| <text string="CHECK"> | ||
| <bounds left="0" top="0" right="1" bottom="0.4" /> | ||
| <color red="1.0" green="1.0" blue="1.0" /> | ||
| </text> | ||
| <text string="ENGINE"> | ||
| <bounds left="0" top="0.5" right="1" bottom="1" /> | ||
| <color red="1.0" green="1.0" blue="1.0" /> | ||
| </text> | ||
| </element> | ||
|
|
||
| <view name="Main"> | ||
| <element ref="background"> <bounds left="0" right="7" top="0" bottom="5" /> </element> | ||
|
|
||
| <element ref="led" name="led_fuel"> <bounds left="1" right="2" top="1" bottom="2" /> </element> | ||
| <element ref="label_fuel"> <bounds left="1" right="2" top="2.2" bottom="2.6" /> </element> | ||
| <element ref="led" name="led_inject"> <bounds left="3" right="4" top="1" bottom="2" /> </element> | ||
| <element ref="label_inject"> <bounds left="3" right="4" top="2.2" bottom="2.6" /> </element> | ||
| <element ref="led" name="led_check"> <bounds left="5" right="6" top="1" bottom="2" /> </element> | ||
| <element ref="label_check"> <bounds left="5" right="6" top="2.2" bottom="2.6" /> </element> | ||
| </view> | ||
|
|
||
| </mamelayout> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P20-P23 outputs are time-multiplexed with A8-A11 on MCS-48 parts executing from external memory.
I thought that the ADC hookup might use the PROG expander protocol, but from other comments that doesn't sound like the case here.