Skip to content

Commit

Permalink
tidump: Clean up formatting and move to using the newly exported cmd73.h
Browse files Browse the repository at this point in the history
Also adds TI-84 Plus CSE support and makes things a bit more robust by actually
checking return codes of functions for failure. Doesn't yet attempt to
retry failed pages, it seems the silverlink gets confused when you do so.

Will need further cleanup before merging with master.

TODO: Either remove or allow toggling of ram dumps and perhaps add a parameter
to only dump single pages for debugging or testing.
  • Loading branch information
Jonimoose committed Apr 4, 2013
1 parent f7b12b6 commit 806c3d8
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 1,030 deletions.
6 changes: 3 additions & 3 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ uninstall:
done

common.@OBJEXT@: common.c titools.h
$(compile) -c $(srcdir)/common.c $(srcdir)/dbus_pkt.c $(srcdir)/cmd73.c
$(compile) -c $(srcdir)/common.c

glob.@OBJEXT@: glob.c titools.h
$(compile) -c $(srcdir)/glob.c
Expand Down Expand Up @@ -77,8 +77,8 @@ tiput.@OBJEXT@: tiput.c titools.h
$(compile) -c $(srcdir)/tiput.c

tidump@EXEEXT@: tidump.@OBJEXT@ common.@OBJEXT@
$(link) -o tidump@EXEEXT@ tidump.@OBJEXT@ common.@OBJEXT@ dbus_pkt.o cmd73.o $(libs)
tidump.@OBJEXT@: tidump.c titools.h dbus_pkt.h cmd73.h
$(link) -o tidump@EXEEXT@ tidump.@OBJEXT@ common.@OBJEXT@ $(libs)
tidump.@OBJEXT@: tidump.c titools.h
$(compile) -c $(srcdir)/tidump.c

tirm@EXEEXT@: tirm.@OBJEXT@ common.@OBJEXT@ glob.@OBJEXT@
Expand Down
Loading

0 comments on commit 806c3d8

Please sign in to comment.