Changes between Version 22 and Version 23 of ARMS22-SOFTMODEM-HOWTO


Ignore:
Timestamp:
Mar 18, 2011 11:11:40 AM (13 years ago)
Author:
Ken Suzuki
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ARMS22-SOFTMODEM-HOWTO

    v22 v23  
    111111== iPhone Apps: Onkyo Denbun ==
    112112
    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.
     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.
    114114
    115115http://itunes.apple.com/jp/app/id385096654?mt=8
     
    117117== How to use the iPhone source code ==
    118118
    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.
     119Currently, 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.
    120120
    121 * AudioQueueObject.h
    122 * AudioQueueObject.m
    123 * AudioSignalAnalyzer.h
    124 * AudioSignalAnalyzer.m
    125 * AudioSignalGenerator.h
    126 * AudioSignalGenerator.m
    127 * CharReceiver.h
    128 * FSKModemConfig.h
    129 * FSKByteQueue.h
    130 * FSKRecognizer.h
    131 * FSKRecognizer.mm
    132 * FSKSerialGenerator.h
    133 * FSKSerialGenerator.m
    134 * lockfree.h
    135 * MultiDelegate.h
    136 * MultiDelegate.m
    137 * PatternRecognizer.h
     121* !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]]
    138138
    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.
    140140
    141 * AudioToolbox.framework
    142 * AVFoundation.framework
     141* !AudioToolbox.framework[[BR]]
     142* AVFoundation.framework[[BR]]
    143143
    144144=== Initialization ===
     
    147147
    148148{{{
    149 #!Objective-C
     149#!C++
    150150AVAudioSession * session = [AVAudioSession sharedInstance];
    151151session.delegate = self;