From 06ed2392b2c3ce9b32cb48d2d3539a104e96ea70 Mon Sep 17 00:00:00 2001 From: Jeremy Rand Date: Wed, 21 Jul 2021 17:31:24 -0400 Subject: [PATCH] Update the project readme a bit. Add a distribution readme file but I need to fill it out. Increase the frequency the action routine is called to try to improve the typing rate on the GS. --- Listener.xcodeproj/project.pbxproj | 2 ++ Listener/Makefile | 2 +- Listener/Readme.md | 7 +++++++ Listener/main.c | 2 +- README.md | 4 +++- 5 files changed, 14 insertions(+), 3 deletions(-) create mode 100644 Listener/Readme.md diff --git a/Listener.xcodeproj/project.pbxproj b/Listener.xcodeproj/project.pbxproj index 070f410..3b168af 100644 --- a/Listener.xcodeproj/project.pbxproj +++ b/Listener.xcodeproj/project.pbxproj @@ -76,6 +76,7 @@ 9D5155DD26A1EDA60075EBC7 /* system601_net.2mg */ = {isa = PBXFileReference; lastKnownFileType = file; path = system601_net.2mg; sourceTree = ""; }; 9D51562026A1F0C60075EBC7 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 9D51562926A1F16F0075EBC7 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + 9D5156A426A8C8B30075EBC7 /* Readme.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = Readme.md; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -117,6 +118,7 @@ 9D5155A726A1ED510075EBC7 /* main.h */, 9D5155A826A1ED510075EBC7 /* main.rez */, 9D5155AA26A1ED510075EBC7 /* Makefile */, + 9D5156A426A8C8B30075EBC7 /* Readme.md */, 9D5155AC26A1ED510075EBC7 /* make */, 9D5155C526A1ED510075EBC7 /* Supporting Files */, ); diff --git a/Listener/Makefile b/Listener/Makefile index 6e4a660..b859d08 100644 --- a/Listener/Makefile +++ b/Listener/Makefile @@ -86,7 +86,7 @@ LDFLAGS+= # write your documentation in markdown in your project and at build time, # that documentation is converted to a format that is good to package with # your software and can be opened on a GS. -MD_SRCS= +MD_SRCS=Readme.md # If you want to copy one or more files or directories to the distribution disk # image, add the root directory to this variable. Any directories under diff --git a/Listener/Readme.md b/Listener/Readme.md new file mode 100644 index 0000000..d34e668 --- /dev/null +++ b/Listener/Readme.md @@ -0,0 +1,7 @@ +# Listener + +## Installation + +## Usage + +## Future Improvements diff --git a/Listener/main.c b/Listener/main.c index 2f2c22d..9cfa58c 100644 --- a/Listener/main.c +++ b/Listener/main.c @@ -8,7 +8,7 @@ */ -#pragma nda NDAOpen NDAClose NDAAction NDAInit 5 0x03FF " Listener\\H**" +#pragma nda NDAOpen NDAClose NDAAction NDAInit 2 0x03FF " Listener\\H**" #include diff --git a/README.md b/README.md index 4e4ed11..a855f32 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # Listener -This is a new desk accessory for the Apple IIgs that allows an iOS device to connect to the GS over a network and stream text to it from voice dicatation. +This is a new desk accessory for the Apple IIgs that allows an iOS device to connect to the GS over a network and stream text to it from voice dicatation. It must be paired with the [ListenerApp](https://github.com/jeremysrand/ListenerApp) running on your iOS device. See that project for details about obtaining the app. + +This code was written during KansasFest 2021 as part of the HackFest project. For information about how to use the application and do voice dictation to your Apple IIgs, read the [distribution Readme file](/Listener/Readme.md).