Changes between Version 22 and Version 23 of ARMS22-SOFTMODEM-HOWTO
- Timestamp:
- Mar 18, 2011 11:11:40 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ARMS22-SOFTMODEM-HOWTO
v22 v23 111 111 == iPhone Apps: Onkyo Denbun == 112 112 113 SoftModemTerminal.app is now available for download from theAppStore. If you don't have iPhone application development environment, please download the application from this URL.113 !SoftModemTerminal.app is now available for download from the !AppStore. If you don't have iPhone application development environment, please download the application from this URL. 114 114 115 115 http://itunes.apple.com/jp/app/id385096654?mt=8 … … 117 117 == How to use the iPhone source code == 118 118 119 Currently, the source code of the SoftModem is not made as a framework. If you want to use SoftModem in your project, the source code related to the SoftModem must be copied from the source code of the SoftModemTerminal. The following is the list of source code related toSoftModem. Please copy these to the project source code.119 Currently, the source code of the !SoftModem is not made as a framework. If you want to use !SoftModem in your project, the source code related to the !SoftModem must be copied from the source code of the !SoftModemTerminal. The following is the list of source code related to !SoftModem. Please copy these to the project source code. 120 120 121 * AudioQueueObject.h122 * AudioQueueObject.m123 * AudioSignalAnalyzer.h124 * AudioSignalAnalyzer.m125 * AudioSignalGenerator.h126 * AudioSignalGenerator.m127 * CharReceiver.h128 * FSKModemConfig.h 129 * FSKByteQueue.h 130 * FSKRecognizer.h 131 * FSKRecognizer.mm 132 * FSKSerialGenerator.h 133 * FSKSerialGenerator.m 134 * lockfree.h 135 * MultiDelegate.h136 * MultiDelegate.m137 * PatternRecognizer.h121 * !AudioQueueObject.h[[BR]] 122 * !AudioQueueObject.m[[BR]] 123 * !AudioSignalAnalyzer.h[[BR]] 124 * !AudioSignalAnalyzer.m[[BR]] 125 * !AudioSignalGenerator.h[[BR]] 126 * !AudioSignalGenerator.m[[BR]] 127 * !CharReceiver.h[[BR]] 128 * FSKModemConfig.h[[BR]] 129 * FSKByteQueue.h[[BR]] 130 * FSKRecognizer.h[[BR]] 131 * FSKRecognizer.mm[[BR]] 132 * FSKSerialGenerator.h[[BR]] 133 * FSKSerialGenerator.m[[BR]] 134 * lockfree.h[[BR]] 135 * !MultiDelegate.h[[BR]] 136 * !MultiDelegate.m[[BR]] 137 * !PatternRecognizer.h[[BR]] 138 138 139 SoftModem uses the following two framework for audio input and output. Please add them to your project.139 !SoftModem uses the following two framework for audio input and output. Please add them to your project. 140 140 141 * AudioToolbox.framework142 * AVFoundation.framework 141 * !AudioToolbox.framework[[BR]] 142 * AVFoundation.framework[[BR]] 143 143 144 144 === Initialization === … … 147 147 148 148 {{{ 149 #! Objective-C149 #!C++ 150 150 AVAudioSession * session = [AVAudioSession sharedInstance]; 151 151 session.delegate = self;