├── AirNFC ├── AirNFC.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── admin.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ ├── cortonesi.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── matteocortonesi.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ ├── admin.xcuserdatad │ │ └── xcschemes │ │ │ ├── AirNFC.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── cortonesi.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ │ ├── AirNFC.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── matteocortonesi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── AirNFC.xcscheme │ │ └── xcschememanagement.plist └── AirNFC │ ├── AMAudioConnectionEngine.h │ ├── AMAudioConnectionEngine.m │ ├── AMAudioPort.h │ ├── AMAudioPort.m │ ├── AMAudioSessionManager.h │ ├── AMAudioSessionManager.m │ ├── AMDeviceDiscovererModem.h │ ├── AMDeviceDiscovererModem.m │ ├── AMUtilities.h │ ├── AirNFC-Info.plist │ ├── AirNFC-Prefix.pch │ ├── AirNFC.h │ ├── AirNFC.m │ ├── AirNFCConfiguration.h │ ├── AirNFCErrors.h │ ├── AirNFCErrors.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── TPCircularBuffer.h │ ├── TPCircularBuffer.m │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ ├── InfoPlist.strings │ └── MainStoryboard.storyboard │ └── main.m ├── Dirty Playground ├── sound detection │ ├── Emitter │ │ ├── .gitignore │ │ ├── Emitter.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Emitter.xcscheme │ │ └── Emitter │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Emitter-Info.plist │ │ │ ├── Emitter-Prefix.pch │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainStoryboard.storyboard │ │ │ └── main.m │ ├── Tester │ │ ├── .gitignore │ │ ├── Tester.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── Tester │ │ │ ├── ADEAssert.h │ │ │ ├── ADEAudioEngine.h │ │ │ ├── ADEAudioEngine.m │ │ │ ├── ADECanvas.h │ │ │ ├── ADECanvas.m │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Tester-Info.plist │ │ │ ├── Tester-Prefix.pch │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainStoryboard.storyboard │ │ │ └── main.m │ └── test │ │ ├── test.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ ├── cortonesi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── matteocortonesi.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ ├── cortonesi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ │ ├── test.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── matteocortonesi.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── test.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── test │ │ ├── data.h │ │ ├── main.m │ │ ├── test-Prefix.pch │ │ └── test.1 └── sound transmitting bits │ ├── Emitter │ ├── .gitignore │ ├── Emitter.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Emitter.xcscheme │ └── Emitter │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Emitter-Info.plist │ │ ├── Emitter-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainStoryboard.storyboard │ │ └── main.m │ ├── Tester with phase │ ├── .gitignore │ ├── Tester.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Tester │ │ ├── ADEAssert.h │ │ ├── ADEAudioEngine.h │ │ ├── ADEAudioEngine.m │ │ ├── ADECanvas.h │ │ ├── ADECanvas.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Tester-Info.plist │ │ ├── Tester-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainStoryboard.storyboard │ │ └── main.m │ ├── Tester │ ├── .gitignore │ ├── Tester.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Tester │ │ ├── ADEAssert.h │ │ ├── ADEAudioEngine.h │ │ ├── ADEAudioEngine.m │ │ ├── ADECanvas.h │ │ ├── ADECanvas.m │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Tester-Info.plist │ │ ├── Tester-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainStoryboard.storyboard │ │ └── main.m │ └── test │ ├── test.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── cortonesi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── matteocortonesi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── cortonesi.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ │ ├── test.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── matteocortonesi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── test.xcscheme │ │ └── xcschememanagement.plist │ └── test │ ├── data.h │ ├── main.m │ ├── test-Prefix.pch │ └── test.1 ├── Simulations ├── AA.m ├── AB.m ├── ABAB.m ├── Synchronization Collisions.gcx ├── data1.txt ├── data2.txt ├── detect1.m ├── detect2.m ├── detect3.m ├── fftData.txt ├── rawData.txt ├── symbol.txt ├── synchronizationSymbol.m └── synchronizationSymbolOptimizer.m ├── ofdm_new.pdf └── synchronization.pdf /AirNFC/AirNFC.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/project.xcworkspace/xcuserdata/cortonesi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/project.xcworkspace/xcuserdata/cortonesi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/project.xcworkspace/xcuserdata/cortonesi.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/project.xcworkspace/xcuserdata/cortonesi.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/project.xcworkspace/xcuserdata/matteocortonesi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/project.xcworkspace/xcuserdata/matteocortonesi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/project.xcworkspace/xcuserdata/matteocortonesi.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/project.xcworkspace/xcuserdata/matteocortonesi.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/AirNFC.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/AirNFC.xcscheme -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/AirNFC.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/AirNFC.xcscheme -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/AirNFC.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/AirNFC.xcscheme -------------------------------------------------------------------------------- /AirNFC/AirNFC.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AirNFC/AirNFC/AMAudioConnectionEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AMAudioConnectionEngine.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/AMAudioConnectionEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AMAudioConnectionEngine.m -------------------------------------------------------------------------------- /AirNFC/AirNFC/AMAudioPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AMAudioPort.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/AMAudioPort.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AMAudioPort.m -------------------------------------------------------------------------------- /AirNFC/AirNFC/AMAudioSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AMAudioSessionManager.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/AMAudioSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AMAudioSessionManager.m -------------------------------------------------------------------------------- /AirNFC/AirNFC/AMDeviceDiscovererModem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AMDeviceDiscovererModem.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/AMDeviceDiscovererModem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AMDeviceDiscovererModem.m -------------------------------------------------------------------------------- /AirNFC/AirNFC/AMUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AMUtilities.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/AirNFC-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AirNFC-Info.plist -------------------------------------------------------------------------------- /AirNFC/AirNFC/AirNFC-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AirNFC-Prefix.pch -------------------------------------------------------------------------------- /AirNFC/AirNFC/AirNFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AirNFC.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/AirNFC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AirNFC.m -------------------------------------------------------------------------------- /AirNFC/AirNFC/AirNFCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AirNFCConfiguration.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/AirNFCErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AirNFCErrors.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/AirNFCErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AirNFCErrors.m -------------------------------------------------------------------------------- /AirNFC/AirNFC/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AppDelegate.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/AppDelegate.m -------------------------------------------------------------------------------- /AirNFC/AirNFC/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/Default-568h@2x.png -------------------------------------------------------------------------------- /AirNFC/AirNFC/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/Default.png -------------------------------------------------------------------------------- /AirNFC/AirNFC/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/Default@2x.png -------------------------------------------------------------------------------- /AirNFC/AirNFC/TPCircularBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/TPCircularBuffer.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/TPCircularBuffer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/TPCircularBuffer.m -------------------------------------------------------------------------------- /AirNFC/AirNFC/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/ViewController.h -------------------------------------------------------------------------------- /AirNFC/AirNFC/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/ViewController.m -------------------------------------------------------------------------------- /AirNFC/AirNFC/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AirNFC/AirNFC/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /AirNFC/AirNFC/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/AirNFC/AirNFC/main.m -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata 3 | -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter.xcodeproj/xcshareddata/xcschemes/Emitter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter.xcodeproj/xcshareddata/xcschemes/Emitter.xcscheme -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/AppDelegate.h -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/AppDelegate.m -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/Default-568h@2x.png -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/Default.png -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/Default@2x.png -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/Emitter-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/Emitter-Info.plist -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/Emitter-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/Emitter-Prefix.pch -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/ViewController.h -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/ViewController.m -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Emitter/Emitter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Emitter/Emitter/main.m -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata 3 | -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/ADEAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/ADEAssert.h -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/ADEAudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/ADEAudioEngine.h -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/ADEAudioEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/ADEAudioEngine.m -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/ADECanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/ADECanvas.h -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/ADECanvas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/ADECanvas.m -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/AppDelegate.h -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/AppDelegate.m -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/Default-568h@2x.png -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/Default.png -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/Default@2x.png -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/Tester-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/Tester-Info.plist -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/Tester-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/Tester-Prefix.pch -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/ViewController.h -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/ViewController.m -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /Dirty Playground/sound detection/Tester/Tester/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/Tester/Tester/main.m -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test.xcodeproj/project.xcworkspace/xcuserdata/cortonesi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test.xcodeproj/project.xcworkspace/xcuserdata/cortonesi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test.xcodeproj/project.xcworkspace/xcuserdata/matteocortonesi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test.xcodeproj/project.xcworkspace/xcuserdata/matteocortonesi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/test.xcscheme -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/test.xcscheme -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test/data.h -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test/main.m -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test/test-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test/test-Prefix.pch -------------------------------------------------------------------------------- /Dirty Playground/sound detection/test/test/test.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound detection/test/test/test.1 -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata 3 | -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter.xcodeproj/xcshareddata/xcschemes/Emitter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter.xcodeproj/xcshareddata/xcschemes/Emitter.xcscheme -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/AppDelegate.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/AppDelegate.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/Default-568h@2x.png -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/Default.png -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/Default@2x.png -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/Emitter-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/Emitter-Info.plist -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/Emitter-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/Emitter-Prefix.pch -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/ViewController.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/ViewController.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Emitter/Emitter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Emitter/Emitter/main.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata 3 | -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/ADEAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/ADEAssert.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/ADEAudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/ADEAudioEngine.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/ADEAudioEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/ADEAudioEngine.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/ADECanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/ADECanvas.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/ADECanvas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/ADECanvas.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/AppDelegate.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/AppDelegate.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/Default-568h@2x.png -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/Default.png -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/Default@2x.png -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/Tester-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/Tester-Info.plist -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/Tester-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/Tester-Prefix.pch -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/ViewController.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/ViewController.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester with phase/Tester/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester with phase/Tester/main.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata 3 | -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/ADEAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/ADEAssert.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/ADEAudioEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/ADEAudioEngine.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/ADEAudioEngine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/ADEAudioEngine.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/ADECanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/ADECanvas.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/ADECanvas.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/ADECanvas.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/AppDelegate.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/AppDelegate.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/Default-568h@2x.png -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/Default.png -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/Default@2x.png -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/Tester-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/Tester-Info.plist -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/Tester-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/Tester-Prefix.pch -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/ViewController.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/ViewController.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/Tester/Tester/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/Tester/Tester/main.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test.xcodeproj/project.xcworkspace/xcuserdata/cortonesi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test.xcodeproj/project.xcworkspace/xcuserdata/cortonesi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test.xcodeproj/project.xcworkspace/xcuserdata/matteocortonesi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test.xcodeproj/project.xcworkspace/xcuserdata/matteocortonesi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/test.xcscheme -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/cortonesi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/test.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/test.xcscheme -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test.xcodeproj/xcuserdata/matteocortonesi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test/data.h -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test/main.m -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test/test-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test/test-Prefix.pch -------------------------------------------------------------------------------- /Dirty Playground/sound transmitting bits/test/test/test.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Dirty Playground/sound transmitting bits/test/test/test.1 -------------------------------------------------------------------------------- /Simulations/AA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/AA.m -------------------------------------------------------------------------------- /Simulations/AB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/AB.m -------------------------------------------------------------------------------- /Simulations/ABAB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/ABAB.m -------------------------------------------------------------------------------- /Simulations/Synchronization Collisions.gcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/Synchronization Collisions.gcx -------------------------------------------------------------------------------- /Simulations/data1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/data1.txt -------------------------------------------------------------------------------- /Simulations/data2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/data2.txt -------------------------------------------------------------------------------- /Simulations/detect1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/detect1.m -------------------------------------------------------------------------------- /Simulations/detect2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/detect2.m -------------------------------------------------------------------------------- /Simulations/detect3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/detect3.m -------------------------------------------------------------------------------- /Simulations/fftData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/fftData.txt -------------------------------------------------------------------------------- /Simulations/rawData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/rawData.txt -------------------------------------------------------------------------------- /Simulations/symbol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/symbol.txt -------------------------------------------------------------------------------- /Simulations/synchronizationSymbol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/synchronizationSymbol.m -------------------------------------------------------------------------------- /Simulations/synchronizationSymbolOptimizer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/Simulations/synchronizationSymbolOptimizer.m -------------------------------------------------------------------------------- /ofdm_new.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/ofdm_new.pdf -------------------------------------------------------------------------------- /synchronization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltese/AirNFC/HEAD/synchronization.pdf --------------------------------------------------------------------------------