├── .cproject ├── .gitignore ├── .project ├── README.txt ├── TODO.txt ├── docs ├── DesignDecisions.txt ├── Doxyfile ├── INFO.txt ├── WHY.txt └── licenses │ ├── gpl.template.bash │ ├── gpl.template.c │ ├── gpl.template.h │ └── gpl.v3.full.txt ├── lib ├── FreeMS2-SerialMonitor-1.0.s19 └── test.packets │ ├── CarriageReturn.bin │ ├── GetProgramTitle.bin │ ├── GetRevisionNumber.bin │ ├── README.txt │ ├── broken │ ├── request.echo.no.ack.no.addrs.bad.checksum │ ├── request.interface.no.ack.1.to.2.bad.checksum.bin │ ├── request.interface.no.ack.1.to.2.bin │ ├── request.interface.no.ack.escaped.esc.1.to.2.bin │ ├── request.interface.no.ack.escaped.start.1.to.2.bin │ ├── request.interface.no.ack.escaped.stop.1.to.2.bin │ ├── request.interface.no.ack.force.esc.55.bin │ ├── request.interface.no.ack.force.esc.66.bin │ ├── request.temp.burn.no.ack.no.addrs │ ├── request.temp.erase.no.ack.no.addrs │ ├── send.small.object.for.direct.burn │ ├── send.small.object.for.direct.burn.1111 │ ├── send.small.object.straight.to.ram │ ├── send.small.object.straight.to.ram.1111 │ ├── set.main.cell.value.packet │ ├── simple.escape.packet.fail.2starts │ ├── simple.escape.packet.fail.checksum │ ├── simple.escape.packet.fail.escwrong │ └── simple.escape.packet.pass │ ├── deprecated │ ├── configure.async.datalog.type.to.0x00-OFF │ └── configure.async.datalog.type.to.0x01-Basic │ ├── negative.tests │ └── request.bad.payload.id.bin │ ├── request.block.cht.transfer.table.bin │ ├── request.block.iat.transfer.table.bin │ ├── request.block.test.transfer.table.bin │ ├── request.block.vemain.flash.bin │ ├── request.block.vemain.ram.bin │ ├── request.burn.ram.to.flash.datalog.stream.type.bin │ ├── request.echo.of.request.bin │ ├── request.echo.test.pattern.bin │ ├── request.firmware.version.bin │ ├── request.interface.version.bin │ ├── request.location.id.details.for.0x0000.bin │ ├── request.location.id.details.for.0x8000.bin │ ├── request.location.id.list.type.all.0x00.bin │ ├── request.location.id.list.type.and.0x02.bin │ ├── request.location.id.list.type.or.0x01.lookup.bin │ ├── request.location.id.list.type.or.0x01.maintables.bin │ ├── request.location.id.list.type.or.0x01.maintables.or.lookup.bin │ ├── request.location.id.list.type.or.0x01.none.bin │ ├── request.max.packet.size.bin │ ├── request.partial.block.datalog.stream.type.bin │ ├── request.reset.hard.bin │ ├── request.reset.soft.bin │ ├── response.broken.echo.test.pattern.bin │ ├── sample.data │ ├── byte.sequence.0x00-0x3F.size.64 │ └── byte.sequence.0x00-0xFF.size.256 │ ├── serial.monitor.dir │ ├── serial.mon.clear.flash.flag │ ├── serial.mon.erase.a.page │ ├── serial.mon.erase.all │ ├── serial.mon.open.comms │ ├── serial.mon.read.flash.flag │ ├── serial.mon.read.ioregs1 │ ├── serial.mon.read.ioregs2 │ ├── serial.mon.read.ioregs3 │ ├── serial.mon.read.ioregs4 │ ├── serial.mon.read.ioregs5 │ ├── serial.mon.read.ioregs6 │ ├── serial.mon.read.ioregs7 │ ├── serial.mon.read.ioregs8 │ ├── serial.mon.read.ppage │ ├── serial.mon.reset │ ├── serial.mon.set.ppage.38 │ ├── serial.mon.set.ppage.39 │ ├── serial.mon.set.ppage.3A │ ├── serial.mon.set.ppage.3B │ ├── serial.mon.set.ppage.3C │ ├── serial.mon.set.ppage.3D │ ├── serial.mon.set.ppage.3E │ ├── serial.mon.set.ppage.3F │ ├── serial.mon.write.mass.erase.to.flash.control │ └── serial.mon.write.to.page.window │ ├── special.bytes │ ├── ESC │ ├── ONES │ ├── START │ ├── STOP │ ├── ZERO │ ├── escapedESC │ ├── escapedSTART │ └── escapedSTOP │ ├── update.block.with.datalog.stream.type.0x00-OFF.bin │ ├── update.block.with.datalog.stream.type.0x01-Basic.bin │ └── update.flash.block.with.datalog.stream.type.0x00-OFF.bin ├── previous-release └── Note.txt └── src ├── CHTTransferTable.c ├── FixedConfig1.c ├── FixedConfig2.c ├── FreeMS2.c ├── FuelTables.c ├── FuelTables2.c ├── IATTransferTable.c ├── MAFTransferTable.c ├── Makefile ├── MiataNB.c ├── MissingTeeth.c ├── NipponDenso.c ├── Simple.c ├── Subaru-36-2-2-2.c ├── TestTransferTable.c ├── TimingTables.c ├── TimingTables2.c ├── TunableConfig.c ├── TunableConfig2.c ├── assembly └── flashBurn.s ├── blockDetailsLookup.c ├── commsCore.c ├── commsISRs.c ├── coreVarsGenerator.c ├── data ├── configuration │ └── defaultUteConfig.h ├── tables │ ├── ign │ │ └── FE-DOHC.h │ ├── lambda │ │ ├── flatStoichiometric.h │ │ └── originalCurve.h │ └── ve │ │ └── flat80Percent.h └── thermistors │ ├── Bosch.h │ ├── Denso.h │ └── GM.h ├── decodePacketAndRespond.c ├── derivedVarsGenerator.c ├── doxy ├── groups.h └── mainPage.h ├── flashWrite.c ├── fuelAndIgnitionCalcs.c ├── globalConstants.c ├── hc9s12c128elfb.x ├── inc ├── 9S12C128.h ├── 9S12XDP512asm.s ├── FixedConfigs.h ├── FreeMS2.h ├── MiataNB.h ├── MissingTeeth.h ├── NipponDenso.h ├── Simple.h ├── Subaru-36-2-2-2.h ├── TunableConfigs.h ├── blockDetailsLookup.h ├── commsCore.h ├── commsISRs.h ├── coreVarsGenerator.h ├── decodePacketAndRespond.h ├── decoderInterface.h ├── derivedVarsGenerator.h ├── errorDefines.h ├── flashBurn.h ├── flashGlobals.h ├── flashWrite.h ├── fuelAndIgnitionCalcs.h ├── globalConstants.h ├── globalDefines.h ├── init.h ├── injectionISRs.h ├── injectorISR.c ├── interrupts.h ├── locationIDs.h ├── main.h ├── memory.h ├── packetTypes.h ├── pagedLocationBuffers.h ├── structs.h ├── tableLookup.h └── utils.h ├── init.c ├── injectionISRs.c ├── interrupts.c ├── main.c ├── memory.x ├── miscISRs.c ├── realtimeISRs.c ├── regions.x ├── staticInit.c ├── tableLookup.c └── utils.c /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/.cproject -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/.project -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/README.txt -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/TODO.txt -------------------------------------------------------------------------------- /docs/DesignDecisions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/docs/DesignDecisions.txt -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/INFO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/docs/INFO.txt -------------------------------------------------------------------------------- /docs/WHY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/docs/WHY.txt -------------------------------------------------------------------------------- /docs/licenses/gpl.template.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/docs/licenses/gpl.template.bash -------------------------------------------------------------------------------- /docs/licenses/gpl.template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/docs/licenses/gpl.template.c -------------------------------------------------------------------------------- /docs/licenses/gpl.template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/docs/licenses/gpl.template.h -------------------------------------------------------------------------------- /docs/licenses/gpl.v3.full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/docs/licenses/gpl.v3.full.txt -------------------------------------------------------------------------------- /lib/FreeMS2-SerialMonitor-1.0.s19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/FreeMS2-SerialMonitor-1.0.s19 -------------------------------------------------------------------------------- /lib/test.packets/CarriageReturn.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/test.packets/GetProgramTitle.bin: -------------------------------------------------------------------------------- 1 | S -------------------------------------------------------------------------------- /lib/test.packets/GetRevisionNumber.bin: -------------------------------------------------------------------------------- 1 | Q -------------------------------------------------------------------------------- /lib/test.packets/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/README.txt -------------------------------------------------------------------------------- /lib/test.packets/broken/request.echo.no.ack.no.addrs.bad.checksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/request.echo.no.ack.no.addrs.bad.checksum -------------------------------------------------------------------------------- /lib/test.packets/broken/request.interface.no.ack.1.to.2.bad.checksum.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/request.interface.no.ack.1.to.2.bad.checksum.bin -------------------------------------------------------------------------------- /lib/test.packets/broken/request.interface.no.ack.1.to.2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/request.interface.no.ack.1.to.2.bin -------------------------------------------------------------------------------- /lib/test.packets/broken/request.interface.no.ack.escaped.esc.1.to.2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/request.interface.no.ack.escaped.esc.1.to.2.bin -------------------------------------------------------------------------------- /lib/test.packets/broken/request.interface.no.ack.escaped.start.1.to.2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/request.interface.no.ack.escaped.start.1.to.2.bin -------------------------------------------------------------------------------- /lib/test.packets/broken/request.interface.no.ack.escaped.stop.1.to.2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/request.interface.no.ack.escaped.stop.1.to.2.bin -------------------------------------------------------------------------------- /lib/test.packets/broken/request.interface.no.ack.force.esc.55.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/request.interface.no.ack.force.esc.55.bin -------------------------------------------------------------------------------- /lib/test.packets/broken/request.interface.no.ack.force.esc.66.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/request.interface.no.ack.force.esc.66.bin -------------------------------------------------------------------------------- /lib/test.packets/broken/request.temp.burn.no.ack.no.addrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/request.temp.burn.no.ack.no.addrs -------------------------------------------------------------------------------- /lib/test.packets/broken/request.temp.erase.no.ack.no.addrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/request.temp.erase.no.ack.no.addrs -------------------------------------------------------------------------------- /lib/test.packets/broken/send.small.object.for.direct.burn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/send.small.object.for.direct.burn -------------------------------------------------------------------------------- /lib/test.packets/broken/send.small.object.for.direct.burn.1111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/send.small.object.for.direct.burn.1111 -------------------------------------------------------------------------------- /lib/test.packets/broken/send.small.object.straight.to.ram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/send.small.object.straight.to.ram -------------------------------------------------------------------------------- /lib/test.packets/broken/send.small.object.straight.to.ram.1111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/send.small.object.straight.to.ram.1111 -------------------------------------------------------------------------------- /lib/test.packets/broken/set.main.cell.value.packet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/set.main.cell.value.packet -------------------------------------------------------------------------------- /lib/test.packets/broken/simple.escape.packet.fail.2starts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/simple.escape.packet.fail.2starts -------------------------------------------------------------------------------- /lib/test.packets/broken/simple.escape.packet.fail.checksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/simple.escape.packet.fail.checksum -------------------------------------------------------------------------------- /lib/test.packets/broken/simple.escape.packet.fail.escwrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/simple.escape.packet.fail.escwrong -------------------------------------------------------------------------------- /lib/test.packets/broken/simple.escape.packet.pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/broken/simple.escape.packet.pass -------------------------------------------------------------------------------- /lib/test.packets/deprecated/configure.async.datalog.type.to.0x00-OFF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/deprecated/configure.async.datalog.type.to.0x00-OFF -------------------------------------------------------------------------------- /lib/test.packets/deprecated/configure.async.datalog.type.to.0x01-Basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/deprecated/configure.async.datalog.type.to.0x01-Basic -------------------------------------------------------------------------------- /lib/test.packets/negative.tests/request.bad.payload.id.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/negative.tests/request.bad.payload.id.bin -------------------------------------------------------------------------------- /lib/test.packets/request.block.cht.transfer.table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.block.cht.transfer.table.bin -------------------------------------------------------------------------------- /lib/test.packets/request.block.iat.transfer.table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.block.iat.transfer.table.bin -------------------------------------------------------------------------------- /lib/test.packets/request.block.test.transfer.table.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.block.test.transfer.table.bin -------------------------------------------------------------------------------- /lib/test.packets/request.block.vemain.flash.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.block.vemain.flash.bin -------------------------------------------------------------------------------- /lib/test.packets/request.block.vemain.ram.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.block.vemain.ram.bin -------------------------------------------------------------------------------- /lib/test.packets/request.burn.ram.to.flash.datalog.stream.type.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.burn.ram.to.flash.datalog.stream.type.bin -------------------------------------------------------------------------------- /lib/test.packets/request.echo.of.request.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.echo.of.request.bin -------------------------------------------------------------------------------- /lib/test.packets/request.echo.test.pattern.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.echo.test.pattern.bin -------------------------------------------------------------------------------- /lib/test.packets/request.firmware.version.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.firmware.version.bin -------------------------------------------------------------------------------- /lib/test.packets/request.interface.version.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.interface.version.bin -------------------------------------------------------------------------------- /lib/test.packets/request.location.id.details.for.0x0000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.location.id.details.for.0x0000.bin -------------------------------------------------------------------------------- /lib/test.packets/request.location.id.details.for.0x8000.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.location.id.details.for.0x8000.bin -------------------------------------------------------------------------------- /lib/test.packets/request.location.id.list.type.all.0x00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.location.id.list.type.all.0x00.bin -------------------------------------------------------------------------------- /lib/test.packets/request.location.id.list.type.and.0x02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.location.id.list.type.and.0x02.bin -------------------------------------------------------------------------------- /lib/test.packets/request.location.id.list.type.or.0x01.lookup.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.location.id.list.type.or.0x01.lookup.bin -------------------------------------------------------------------------------- /lib/test.packets/request.location.id.list.type.or.0x01.maintables.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.location.id.list.type.or.0x01.maintables.bin -------------------------------------------------------------------------------- /lib/test.packets/request.location.id.list.type.or.0x01.maintables.or.lookup.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.location.id.list.type.or.0x01.maintables.or.lookup.bin -------------------------------------------------------------------------------- /lib/test.packets/request.location.id.list.type.or.0x01.none.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.location.id.list.type.or.0x01.none.bin -------------------------------------------------------------------------------- /lib/test.packets/request.max.packet.size.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.max.packet.size.bin -------------------------------------------------------------------------------- /lib/test.packets/request.partial.block.datalog.stream.type.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.partial.block.datalog.stream.type.bin -------------------------------------------------------------------------------- /lib/test.packets/request.reset.hard.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.reset.hard.bin -------------------------------------------------------------------------------- /lib/test.packets/request.reset.soft.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/request.reset.soft.bin -------------------------------------------------------------------------------- /lib/test.packets/response.broken.echo.test.pattern.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/response.broken.echo.test.pattern.bin -------------------------------------------------------------------------------- /lib/test.packets/sample.data/byte.sequence.0x00-0x3F.size.64: -------------------------------------------------------------------------------- 1 |  2 |  !"#$%&'()*+,-./0123456789:;<=>? -------------------------------------------------------------------------------- /lib/test.packets/sample.data/byte.sequence.0x00-0xFF.size.256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/sample.data/byte.sequence.0x00-0xFF.size.256 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.clear.flash.flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.clear.flash.flag -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.erase.a.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.erase.a.page -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.erase.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.erase.all -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.open.comms: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.read.flash.flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.read.flash.flag -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs1 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs2 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs3 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs4 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs5 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs6 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs7 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.read.ioregs8 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.read.ppage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.read.ppage -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.reset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.reset -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.38 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.39 -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3A -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3B -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3C -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3D -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3E: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3E -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3F: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.set.ppage.3F -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.write.mass.erase.to.flash.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.write.mass.erase.to.flash.control -------------------------------------------------------------------------------- /lib/test.packets/serial.monitor.dir/serial.mon.write.to.page.window: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/serial.monitor.dir/serial.mon.write.to.page.window -------------------------------------------------------------------------------- /lib/test.packets/special.bytes/ESC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/special.bytes/ESC -------------------------------------------------------------------------------- /lib/test.packets/special.bytes/ONES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/special.bytes/ONES -------------------------------------------------------------------------------- /lib/test.packets/special.bytes/START: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/special.bytes/START -------------------------------------------------------------------------------- /lib/test.packets/special.bytes/STOP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/special.bytes/STOP -------------------------------------------------------------------------------- /lib/test.packets/special.bytes/ZERO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/test.packets/special.bytes/escapedESC: -------------------------------------------------------------------------------- 1 | D -------------------------------------------------------------------------------- /lib/test.packets/special.bytes/escapedSTART: -------------------------------------------------------------------------------- 1 | U -------------------------------------------------------------------------------- /lib/test.packets/special.bytes/escapedSTOP: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /lib/test.packets/update.block.with.datalog.stream.type.0x00-OFF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/update.block.with.datalog.stream.type.0x00-OFF.bin -------------------------------------------------------------------------------- /lib/test.packets/update.block.with.datalog.stream.type.0x01-Basic.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/update.block.with.datalog.stream.type.0x01-Basic.bin -------------------------------------------------------------------------------- /lib/test.packets/update.flash.block.with.datalog.stream.type.0x00-OFF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/lib/test.packets/update.flash.block.with.datalog.stream.type.0x00-OFF.bin -------------------------------------------------------------------------------- /previous-release/Note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/previous-release/Note.txt -------------------------------------------------------------------------------- /src/CHTTransferTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/CHTTransferTable.c -------------------------------------------------------------------------------- /src/FixedConfig1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/FixedConfig1.c -------------------------------------------------------------------------------- /src/FixedConfig2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/FixedConfig2.c -------------------------------------------------------------------------------- /src/FreeMS2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/FreeMS2.c -------------------------------------------------------------------------------- /src/FuelTables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/FuelTables.c -------------------------------------------------------------------------------- /src/FuelTables2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/FuelTables2.c -------------------------------------------------------------------------------- /src/IATTransferTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/IATTransferTable.c -------------------------------------------------------------------------------- /src/MAFTransferTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/MAFTransferTable.c -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/MiataNB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/MiataNB.c -------------------------------------------------------------------------------- /src/MissingTeeth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/MissingTeeth.c -------------------------------------------------------------------------------- /src/NipponDenso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/NipponDenso.c -------------------------------------------------------------------------------- /src/Simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/Simple.c -------------------------------------------------------------------------------- /src/Subaru-36-2-2-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/Subaru-36-2-2-2.c -------------------------------------------------------------------------------- /src/TestTransferTable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/TestTransferTable.c -------------------------------------------------------------------------------- /src/TimingTables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/TimingTables.c -------------------------------------------------------------------------------- /src/TimingTables2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/TimingTables2.c -------------------------------------------------------------------------------- /src/TunableConfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/TunableConfig.c -------------------------------------------------------------------------------- /src/TunableConfig2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/TunableConfig2.c -------------------------------------------------------------------------------- /src/assembly/flashBurn.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/assembly/flashBurn.s -------------------------------------------------------------------------------- /src/blockDetailsLookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/blockDetailsLookup.c -------------------------------------------------------------------------------- /src/commsCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/commsCore.c -------------------------------------------------------------------------------- /src/commsISRs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/commsISRs.c -------------------------------------------------------------------------------- /src/coreVarsGenerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/coreVarsGenerator.c -------------------------------------------------------------------------------- /src/data/configuration/defaultUteConfig.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/tables/ign/FE-DOHC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/data/tables/ign/FE-DOHC.h -------------------------------------------------------------------------------- /src/data/tables/lambda/flatStoichiometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/data/tables/lambda/flatStoichiometric.h -------------------------------------------------------------------------------- /src/data/tables/lambda/originalCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/data/tables/lambda/originalCurve.h -------------------------------------------------------------------------------- /src/data/tables/ve/flat80Percent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/data/tables/ve/flat80Percent.h -------------------------------------------------------------------------------- /src/data/thermistors/Bosch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/data/thermistors/Bosch.h -------------------------------------------------------------------------------- /src/data/thermistors/Denso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/data/thermistors/Denso.h -------------------------------------------------------------------------------- /src/data/thermistors/GM.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/decodePacketAndRespond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/decodePacketAndRespond.c -------------------------------------------------------------------------------- /src/derivedVarsGenerator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/derivedVarsGenerator.c -------------------------------------------------------------------------------- /src/doxy/groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/doxy/groups.h -------------------------------------------------------------------------------- /src/doxy/mainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/doxy/mainPage.h -------------------------------------------------------------------------------- /src/flashWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/flashWrite.c -------------------------------------------------------------------------------- /src/fuelAndIgnitionCalcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/fuelAndIgnitionCalcs.c -------------------------------------------------------------------------------- /src/globalConstants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/globalConstants.c -------------------------------------------------------------------------------- /src/hc9s12c128elfb.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/hc9s12c128elfb.x -------------------------------------------------------------------------------- /src/inc/9S12C128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/9S12C128.h -------------------------------------------------------------------------------- /src/inc/9S12XDP512asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/9S12XDP512asm.s -------------------------------------------------------------------------------- /src/inc/FixedConfigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/FixedConfigs.h -------------------------------------------------------------------------------- /src/inc/FreeMS2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/FreeMS2.h -------------------------------------------------------------------------------- /src/inc/MiataNB.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/inc/MissingTeeth.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/inc/NipponDenso.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/inc/Simple.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/inc/Subaru-36-2-2-2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/inc/TunableConfigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/TunableConfigs.h -------------------------------------------------------------------------------- /src/inc/blockDetailsLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/blockDetailsLookup.h -------------------------------------------------------------------------------- /src/inc/commsCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/commsCore.h -------------------------------------------------------------------------------- /src/inc/commsISRs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/commsISRs.h -------------------------------------------------------------------------------- /src/inc/coreVarsGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/coreVarsGenerator.h -------------------------------------------------------------------------------- /src/inc/decodePacketAndRespond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/decodePacketAndRespond.h -------------------------------------------------------------------------------- /src/inc/decoderInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/decoderInterface.h -------------------------------------------------------------------------------- /src/inc/derivedVarsGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/derivedVarsGenerator.h -------------------------------------------------------------------------------- /src/inc/errorDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/errorDefines.h -------------------------------------------------------------------------------- /src/inc/flashBurn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/flashBurn.h -------------------------------------------------------------------------------- /src/inc/flashGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/flashGlobals.h -------------------------------------------------------------------------------- /src/inc/flashWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/flashWrite.h -------------------------------------------------------------------------------- /src/inc/fuelAndIgnitionCalcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/fuelAndIgnitionCalcs.h -------------------------------------------------------------------------------- /src/inc/globalConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/globalConstants.h -------------------------------------------------------------------------------- /src/inc/globalDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/globalDefines.h -------------------------------------------------------------------------------- /src/inc/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/init.h -------------------------------------------------------------------------------- /src/inc/injectionISRs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/injectionISRs.h -------------------------------------------------------------------------------- /src/inc/injectorISR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/injectorISR.c -------------------------------------------------------------------------------- /src/inc/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/interrupts.h -------------------------------------------------------------------------------- /src/inc/locationIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/locationIDs.h -------------------------------------------------------------------------------- /src/inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/main.h -------------------------------------------------------------------------------- /src/inc/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/memory.h -------------------------------------------------------------------------------- /src/inc/packetTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/packetTypes.h -------------------------------------------------------------------------------- /src/inc/pagedLocationBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/pagedLocationBuffers.h -------------------------------------------------------------------------------- /src/inc/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/structs.h -------------------------------------------------------------------------------- /src/inc/tableLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/tableLookup.h -------------------------------------------------------------------------------- /src/inc/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/inc/utils.h -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/init.c -------------------------------------------------------------------------------- /src/injectionISRs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/injectionISRs.c -------------------------------------------------------------------------------- /src/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/interrupts.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/main.c -------------------------------------------------------------------------------- /src/memory.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/memory.x -------------------------------------------------------------------------------- /src/miscISRs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/miscISRs.c -------------------------------------------------------------------------------- /src/realtimeISRs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/realtimeISRs.c -------------------------------------------------------------------------------- /src/regions.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/regions.x -------------------------------------------------------------------------------- /src/staticInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/staticInit.c -------------------------------------------------------------------------------- /src/tableLookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/tableLookup.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredcooke/FreeMS2/HEAD/src/utils.c --------------------------------------------------------------------------------