├── .gitattributes ├── .gitignore ├── Application ├── EraseDeployment │ ├── EraseDeployment.cpp │ ├── dotNetMF.proj │ └── scatterfile_definition.xml ├── MicroBooter │ ├── MicroBooter.cpp │ ├── MicroBooter.proj │ ├── SrecProcessor.cpp │ ├── SrecProcessor.h │ └── scatterfile_microbooter_rvds.xml ├── TinyBooter │ ├── Commands.cpp │ ├── Commands.h │ ├── ConfigurationManager.cpp │ ├── ConfigurationManager.h │ ├── CryptoInterface.cpp │ ├── CryptoInterface.h │ ├── Keys.h │ ├── TinyBooter.cpp │ ├── TinyBooter.h │ ├── TinyBooterDecompressor.cpp │ ├── TinyBooterDecompressorLib.proj │ ├── TinyBooterLib.proj │ └── dotNetMF.proj └── dotNetMF.proj ├── Assets └── Logos │ └── NETMF-logo.xaml ├── BuildEnv.props ├── CLR ├── Core │ ├── AVLTree.cpp │ ├── CLR_RT_DblLinkedList.cpp │ ├── CLR_RT_HeapBlock.cpp │ ├── CLR_RT_HeapBlock_Array.cpp │ ├── CLR_RT_HeapBlock_ArrayList.cpp │ ├── CLR_RT_HeapBlock_BinaryBlob.cpp │ ├── CLR_RT_HeapBlock_Delegate.cpp │ ├── CLR_RT_HeapBlock_Delegate_List.cpp │ ├── CLR_RT_HeapBlock_Finalizer.cpp │ ├── CLR_RT_HeapBlock_Lock.cpp │ ├── CLR_RT_HeapBlock_LockRequest.cpp │ ├── CLR_RT_HeapBlock_Node.cpp │ ├── CLR_RT_HeapBlock_Queue.cpp │ ├── CLR_RT_HeapBlock_Stack.cpp │ ├── CLR_RT_HeapBlock_String.cpp │ ├── CLR_RT_HeapBlock_Timer.cpp │ ├── CLR_RT_HeapBlock_WaitForObject.cpp │ ├── CLR_RT_HeapCluster.cpp │ ├── CLR_RT_Interop.cpp │ ├── CLR_RT_Memory.cpp │ ├── CLR_RT_MemoryRange.cpp │ ├── CLR_RT_ObjectToEvent_Destination.cpp │ ├── CLR_RT_ObjectToEvent_Source.cpp │ ├── CLR_RT_RuntimeMemory.cpp │ ├── CLR_RT_StackFrame.cpp │ ├── CLR_RT_SystemAssembliesTable.cpp │ ├── CLR_RT_UnicodeHelper.cpp │ ├── Cache.cpp │ ├── Cache_Win32.cpp │ ├── Checks.cpp │ ├── Core.cpp │ ├── Core.h │ ├── Core.vcproj │ ├── Core_fastcompile.cpp │ ├── Execution.cpp │ ├── FileStore_Win32.cpp │ ├── GarbageCollector.cpp │ ├── GarbageCollector_Compaction.cpp │ ├── GarbageCollector_ComputeReachabilityGraph.cpp │ ├── GarbageCollector_Info.cpp │ ├── Hardware │ │ ├── Hardware.cpp │ │ ├── Hardware.vcproj │ │ ├── Hardware_stub.cpp │ │ ├── InterruptHandler │ │ │ ├── InterruptHandler.cpp │ │ │ ├── InterruptHandler.vcproj │ │ │ ├── InterruptHandler_stub.cpp │ │ │ ├── InterruptHandler_stub.vcproj │ │ │ ├── dotNetMF.proj │ │ │ └── dotNetMF_stub.proj │ │ ├── dotNetMF.proj │ │ └── dotNetMF_stub.proj │ ├── HeapPersistence │ │ ├── HeapPersistence.vcproj │ │ ├── HeapPersistence_stub.vcproj │ │ ├── Heap_Persistence.cpp │ │ ├── Heap_Persistence_stub.cpp │ │ ├── dotNetMF.proj │ │ └── dotNetMF_stub.proj │ ├── I2C │ │ ├── CLR_RT_HeapBlock_I2CXAction.cpp │ │ ├── I2C.vcproj │ │ ├── I2C_stub.vcproj │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ └── i2c_stub.cpp │ ├── IOPort │ │ ├── CLR_RT_HeapBlock_IOPort.cpp │ │ ├── IOPort.vcproj │ │ ├── IOPort_stub.cpp │ │ ├── IOPort_stub.vcproj │ │ ├── dotNetMF.proj │ │ └── dotNetMF_stub.proj │ ├── InteropAssembliesTable.proj │ ├── Interpreter.cpp │ ├── Jitter.cpp │ ├── Jitter_ARM.cpp │ ├── Jitter_ARM_Emulation.cpp │ ├── Jitter_ARM_Opcodes.cpp │ ├── Jitter_EvalStack.cpp │ ├── Jitter_Execution.cpp │ ├── Jitter_Helper.cpp │ ├── Jitter_Opcode.cpp │ ├── Jitter_Support.cpp │ ├── ParseOptions_Win32.cpp │ ├── RPC │ │ ├── CLR_RT_HeapBlock_EndPoint.cpp │ │ ├── RPC.vcproj │ │ ├── RPC_stub.cpp │ │ ├── RPC_stub.vcproj │ │ ├── dotNetMF.proj │ │ └── dotNetMF_stub.proj │ ├── Random.cpp │ ├── Serialization │ │ ├── BinaryFormatter.cpp │ │ ├── BinaryFormatter_stub.cpp │ │ ├── Serialization.vcproj │ │ ├── Serialization_stub.vcproj │ │ ├── dotNetMF.proj │ │ └── dotNetMF_stub.proj │ ├── Stream │ │ ├── FileStream.cpp │ │ ├── Stream.vcproj │ │ ├── Stream_stub.cpp │ │ ├── Stream_stub.vcproj │ │ ├── dotNetMF.proj │ │ └── dotNetMF_stub.proj │ ├── Streams.cpp │ ├── StringTable.cpp │ ├── StringTableData.cpp │ ├── Thread.cpp │ ├── TypeSystem.cpp │ ├── TypeSystemLookup.cpp │ ├── Various.cpp │ ├── Xml │ │ ├── Xml.vcproj │ │ ├── XmlCharRef.cpp │ │ ├── XmlCharType.cpp │ │ ├── XmlNameTable.cpp │ │ ├── XmlReader.cpp │ │ ├── XmlState.cpp │ │ ├── XmlState_BetweenElements.cpp │ │ ├── XmlState_InAttribute.cpp │ │ ├── XmlState_InAttributeValue.cpp │ │ ├── XmlState_InEndElement.cpp │ │ ├── XmlState_InName.cpp │ │ ├── XmlState_InProcessingInstruction.cpp │ │ ├── XmlState_InStartElement.cpp │ │ ├── XmlState_InValue.cpp │ │ ├── XmlState_InXmlDeclaration.cpp │ │ ├── XmlState_NewTag.cpp │ │ ├── XmlState_Start.cpp │ │ ├── Xml_fastcompile.cpp │ │ ├── Xml_stub.cpp │ │ ├── Xml_stub.vcproj │ │ ├── dotNetMF.proj │ │ └── dotNetMF_stub.proj │ ├── XmlUtil.cpp │ ├── corhdr_private.h │ └── dotNetMF.proj ├── Debugger │ ├── Debugger.cpp │ ├── Debugger.vcproj │ ├── Debugger_extended.cpp │ ├── Debugger_full.cpp │ ├── Debugger_minimal.cpp │ ├── Debugger_stub.cpp │ ├── Debugger_stub.vcproj │ ├── debugger_extended.vcproj │ ├── debugger_full.vcproj │ ├── debugger_minimal.vcproj │ ├── dotNetMF.proj │ ├── dotNetMF_extended.proj │ ├── dotNetMF_full.proj │ ├── dotNetMF_minimal.proj │ └── dotNetMF_stub.proj ├── Diagnostics │ ├── Diagnostics.h │ ├── Diagnostics.vcproj │ ├── Diagnostics_fastcompile.cpp │ ├── Diagnostics_stub.cpp │ ├── Diagnostics_stub.vcproj │ ├── Info.cpp │ ├── Info_Win32.cpp │ ├── ManagedElementTypes_Win32.cpp │ ├── ManagedElementTypes_Win32.h │ ├── Profile.cpp │ ├── Profiler.cpp │ ├── dotNetMF.proj │ └── dotNetMF_stub.proj ├── Graphics │ ├── Bitmap_Win32.cpp │ ├── Bmp │ │ ├── Bitmap.cpp │ │ ├── Bitmap_stub.cpp │ │ ├── Bmp.h │ │ ├── Graphics_Bmp.cpp │ │ ├── Graphics_Bmp.vcproj │ │ ├── Graphics_Bmp_stub.vcproj │ │ ├── dotNetMF.proj │ │ └── dotNetMF_stub.proj │ ├── Font.cpp │ ├── Font_Win32.cpp │ ├── Gif │ │ ├── Gif.cpp │ │ ├── Gif_stub.cpp │ │ ├── Graphics_Gif.cpp │ │ ├── Graphics_Gif.vcproj │ │ ├── Graphics_Gif_stub.vcproj │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── gif.h │ │ ├── giffile.h │ │ ├── lzw.h │ │ ├── lzwread.cpp │ │ ├── lzwread.h │ │ └── lzwutil.h │ ├── Graphics.cpp │ ├── Graphics.h │ ├── Graphics.vcproj │ ├── Graphics_fastcompile.cpp │ ├── Graphics_stub.vcproj │ ├── Jpeg │ │ ├── Graphics_Jpeg.c │ │ ├── Graphics_Jpeg.vcproj │ │ ├── Graphics_Jpeg_stub.vcproj │ │ ├── Jpeg.cpp │ │ ├── Jpeg_stub.cpp │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── jbytearraydatasrc.c │ │ ├── jcapimin.c │ │ ├── jcapistd.c │ │ ├── jccoefct.c │ │ ├── jccolor.c │ │ ├── jcdctmgr.c │ │ ├── jchuff.c │ │ ├── jchuff.h │ │ ├── jcinit.c │ │ ├── jcmainct.c │ │ ├── jcmarker.c │ │ ├── jcmaster.c │ │ ├── jcomapi.c │ │ ├── jconfig.h │ │ ├── jcparam.c │ │ ├── jcphuff.c │ │ ├── jcprepct.c │ │ ├── jcsample.c │ │ ├── jctrans.c │ │ ├── jdapimin.c │ │ ├── jdapistd.c │ │ ├── jdcoefct.c │ │ ├── jdcolor.c │ │ ├── jdct.h │ │ ├── jddctmgr.c │ │ ├── jdhuff.c │ │ ├── jdhuff.h │ │ ├── jdinput.c │ │ ├── jdmainct.c │ │ ├── jdmarker.c │ │ ├── jdmaster.c │ │ ├── jdmerge.c │ │ ├── jdphuff.c │ │ ├── jdpostct.c │ │ ├── jdsample.c │ │ ├── jdtrans.c │ │ ├── jerror.c │ │ ├── jerror.h │ │ ├── jfdctflt.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jidctflt.c │ │ ├── jidctfst.c │ │ ├── jidctint.c │ │ ├── jidctred.c │ │ ├── jinclude.h │ │ ├── jmemmgr.c │ │ ├── jmemsys.h │ │ ├── jmemtinyclr.cpp │ │ ├── jmorecfg.h │ │ ├── jpegint.h │ │ ├── jpeglib.h │ │ ├── jquant1.c │ │ ├── jquant2.c │ │ ├── jutils.c │ │ ├── jversion.h │ │ ├── mcbcr.c │ │ ├── mcbcr.h │ │ ├── mfint.c │ │ ├── miint.c │ │ ├── pfint.c │ │ ├── piint.c │ │ ├── transupp.c │ │ └── transupp.h │ ├── dotNetMF.proj │ ├── dotNetMF_stub.proj │ └── graphics_stub.cpp ├── Include │ ├── Include.vcproj │ ├── TinyCLR_Application.h │ ├── TinyCLR_Checks.h │ ├── TinyCLR_Debugging.h │ ├── TinyCLR_Diagnostics.h │ ├── TinyCLR_ErrorCodes.h │ ├── TinyCLR_Graphics.h │ ├── TinyCLR_Handler.h │ ├── TinyCLR_Hardware.h │ ├── TinyCLR_Interop.h │ ├── TinyCLR_Jitter.h │ ├── TinyCLR_Jitter_ARM.h │ ├── TinyCLR_Jitter_ARM_Emulation.h │ ├── TinyCLR_Messaging.h │ ├── TinyCLR_ParseOptions.h │ ├── TinyCLR_PlatformDef.h │ ├── TinyCLR_Profiling.h │ ├── TinyCLR_Runtime.h │ ├── TinyCLR_Runtime__HeapBlock.h │ ├── TinyCLR_Runtime__Serialization.h │ ├── TinyCLR_Stream.h │ ├── TinyCLR_Types.h │ ├── TinyCLR_Version.h │ ├── TinyCLR_Win32.h │ ├── TinyCLR_Xml.h │ ├── dotNetMF.proj │ └── opcode.def ├── Jitter │ ├── Jitter.cpp │ ├── Jitter_ARM.cpp │ ├── Jitter_ARM_Emulation.cpp │ ├── Jitter_ARM_Opcodes.cpp │ ├── Jitter_EvalStack.cpp │ ├── Jitter_Execution.cpp │ ├── Jitter_Helper.cpp │ ├── Jitter_Opcode.cpp │ ├── Jitter_Support.cpp │ └── dotNetMF.proj ├── Libraries │ ├── CorLib │ │ ├── CorLib.h │ │ ├── CorLib.vcproj │ │ ├── corlib_fastcompile.cpp │ │ ├── corlib_native.cpp │ │ ├── corlib_native.h │ │ ├── corlib_native_System_AppDomain.cpp │ │ ├── corlib_native_System_Array.cpp │ │ ├── corlib_native_System_Attribute.cpp │ │ ├── corlib_native_System_BitConverter.cpp │ │ ├── corlib_native_System_Collections_ArrayList.cpp │ │ ├── corlib_native_System_Collections_Queue.cpp │ │ ├── corlib_native_System_Collections_Stack.cpp │ │ ├── corlib_native_System_DateTime.cpp │ │ ├── corlib_native_System_Delegate.cpp │ │ ├── corlib_native_System_Diagnostics_Debugger.cpp │ │ ├── corlib_native_System_Double.cpp │ │ ├── corlib_native_System_Enum.cpp │ │ ├── corlib_native_System_Exception.cpp │ │ ├── corlib_native_System_GC.cpp │ │ ├── corlib_native_System_Globalization_CultureInfo.cpp │ │ ├── corlib_native_System_Globalization_DateTimeFormat.cpp │ │ ├── corlib_native_System_Globalization_DaylightTime.cpp │ │ ├── corlib_native_System_MarshalByRefObject.cpp │ │ ├── corlib_native_System_Math.cpp │ │ ├── corlib_native_System_MulticastDelegate.cpp │ │ ├── corlib_native_System_Number.cpp │ │ ├── corlib_native_System_Object.cpp │ │ ├── corlib_native_System_Random.cpp │ │ ├── corlib_native_System_Reflection_Assembly.cpp │ │ ├── corlib_native_System_Reflection_Binder.cpp │ │ ├── corlib_native_System_Reflection_ConstructorInfo.cpp │ │ ├── corlib_native_System_Reflection_FieldInfo.cpp │ │ ├── corlib_native_System_Reflection_MemberInfo.cpp │ │ ├── corlib_native_System_Reflection_MethodBase.cpp │ │ ├── corlib_native_System_Reflection_PropertyInfo.cpp │ │ ├── corlib_native_System_Reflection_RuntimeFieldInfo.cpp │ │ ├── corlib_native_System_Reflection_RuntimeMethodInfo.cpp │ │ ├── corlib_native_System_Resources_ResourceManager.cpp │ │ ├── corlib_native_System_RuntimeType.cpp │ │ ├── corlib_native_System_Runtime_CompilerServices_RuntimeHelpers.cpp │ │ ├── corlib_native_System_Runtime_Remoting_RemotingServices.cpp │ │ ├── corlib_native_System_String.cpp │ │ ├── corlib_native_System_SystemException.cpp │ │ ├── corlib_native_System_Text_UTF8Decoder.cpp │ │ ├── corlib_native_System_Text_UTF8Encoding.cpp │ │ ├── corlib_native_System_Threading_AutoResetEvent.cpp │ │ ├── corlib_native_System_Threading_Interlocked.cpp │ │ ├── corlib_native_System_Threading_ManualResetEvent.cpp │ │ ├── corlib_native_System_Threading_Monitor.cpp │ │ ├── corlib_native_System_Threading_Thread.cpp │ │ ├── corlib_native_System_Threading_ThreadAbortException.cpp │ │ ├── corlib_native_System_Threading_Timer.cpp │ │ ├── corlib_native_System_Threading_WaitHandle.cpp │ │ ├── corlib_native_System_TimeSpan.cpp │ │ ├── corlib_native_System_TimeZone.cpp │ │ ├── corlib_native_System_Type.cpp │ │ ├── corlib_native_System_ValueType.cpp │ │ ├── corlib_native_System_WeakReference.cpp │ │ └── dotNetMF.proj │ ├── SPOT │ │ ├── SPOT.h │ │ ├── SPOT.vcproj │ │ ├── SPOT_Messaging │ │ │ ├── SPOT_Messaging.h │ │ │ ├── SPOT_Messaging.vcproj │ │ │ ├── SPOT_Messaging_stub.vcproj │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_stub.proj │ │ │ ├── spot_Messaging_stub.cpp │ │ │ ├── spot_messaging_fastcompile.cpp │ │ │ ├── spot_native_Microsoft_SPOT_Messaging_EndPoint.cpp │ │ │ ├── spot_native_Microsoft_SPOT_Messaging_Message.cpp │ │ │ └── spot_native_Microsoft_SPOT_Messaging_Message__RemotedException.cpp │ │ ├── SPOT_Serialization │ │ │ ├── SPOT_Serialization.h │ │ │ ├── SPOT_Serialization.vcproj │ │ │ ├── SPOT_Serialization_stub.vcproj │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_stub.proj │ │ │ ├── spot_native_Microsoft_SPOT_Serialization.cpp │ │ │ └── spot_serialization_stub.cpp │ │ ├── dotNetMF.proj │ │ ├── spot_fastcompile.cpp │ │ ├── spot_native.cpp │ │ ├── spot_native.h │ │ ├── spot_native_Microsoft_SPOT_Debug.cpp │ │ ├── spot_native_Microsoft_SPOT_ExecutionConstraint.cpp │ │ ├── spot_native_Microsoft_SPOT_ExtendedTimer.cpp │ │ ├── spot_native_Microsoft_SPOT_ExtendedWeakReference.cpp │ │ ├── spot_native_Microsoft_SPOT_Hardware_SystemInfo.cpp │ │ ├── spot_native_Microsoft_SPOT_Hardware_SystemInfo__SystemID.cpp │ │ ├── spot_native_Microsoft_SPOT_Hardware_Utility.cpp │ │ ├── spot_native_Microsoft_SPOT_Math.cpp │ │ ├── spot_native_Microsoft_SPOT_Reflection.cpp │ │ ├── spot_native_Microsoft_SPOT_ResourceUtility.cpp │ │ ├── spot_native_Microsoft_SPOT_SerializationHintsAttribute.cpp │ │ ├── spot_native_Microsoft_SPOT_UnknownTypeException.cpp │ │ ├── spot_native_Microsoft_SPOT_WeakDelegate.cpp │ │ ├── spot_native_System_Security_Cryptography_X509Certificates_X509Certificate.cpp │ │ └── spot_native_System_Security_Cryptography_X509Certificates_X509Certificate.h │ ├── SPOT_Graphics │ │ ├── SPOT_Graphics.h │ │ ├── SPOT_Graphics.vcproj │ │ ├── SPOT_Graphics_stub.vcproj │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── spot_graphics_fastcompile.cpp │ │ ├── spot_graphics_native.cpp │ │ ├── spot_graphics_native.h │ │ ├── spot_graphics_native_Microsoft_SPOT_Bitmap.cpp │ │ ├── spot_graphics_native_Microsoft_SPOT_Font.cpp │ │ └── spot_graphics_stub.cpp │ ├── SPOT_Hardware │ │ ├── SPOT_Hardware.vcproj │ │ ├── SPOT_Hardware_stub.vcproj │ │ ├── SPOT_OneWire │ │ │ ├── SPOT_Hardware_OneWire.vcproj │ │ │ ├── SPOT_Hardware_OneWire_stub.vcproj │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_stub.proj │ │ │ ├── spot_hardware_onewire_fastcompile.cpp │ │ │ ├── spot_hardware_onewire_native.cpp │ │ │ ├── spot_hardware_onewire_native.featureproj │ │ │ ├── spot_hardware_onewire_native.h │ │ │ ├── spot_hardware_onewire_native_Microsoft_SPOT_Hardware_OneWire.cpp │ │ │ ├── spot_hardware_onewire_native_Microsoft_SPOT_Hardware_OneWire.h │ │ │ ├── spot_hardware_onewire_native_Microsoft_SPOT_Hardware_OneWire_mshl.cpp │ │ │ └── spot_hardware_onewire_native_Microsoft_SPOT_Hardware_OneWire_stubs.cpp │ │ ├── SPOT_PWM │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_stub.proj │ │ │ ├── spot_hardware_pwm.h │ │ │ ├── spot_hardware_pwm_fastcompile.cpp │ │ │ ├── spot_hardware_pwm_native.cpp │ │ │ ├── spot_hardware_pwm_native.h │ │ │ ├── spot_hardware_pwm_native_Microsoft_SPOT_Hardware_PWM.cpp │ │ │ └── spot_hardware_pwm_stub.cpp │ │ ├── SPOT_Serial │ │ │ ├── SPOT_Hardware_SerialPort.vcproj │ │ │ ├── SPOT_Hardware_SerialPort_stub.vcproj │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_stub.proj │ │ │ ├── spot_hardware_serial.h │ │ │ ├── spot_hardware_serial_fastcompile.cpp │ │ │ ├── spot_hardware_serial_native.cpp │ │ │ ├── spot_hardware_serial_native.h │ │ │ ├── spot_hardware_serial_native_Microsoft_SPOT_Hardware_SerialPort_Events.cpp │ │ │ ├── spot_hardware_serial_native_System_IO_Ports_SerialPort.cpp │ │ │ └── spot_hardware_serial_stub.cpp │ │ ├── SPOT_Usb │ │ │ ├── SPOT_Hardware_Usb.vcproj │ │ │ ├── SPOT_Hardware_Usb_stub.vcproj │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_stub.proj │ │ │ ├── spot_hardware_usb.h │ │ │ ├── spot_hardware_usb_fastcompile.cpp │ │ │ ├── spot_hardware_usb_native.cpp │ │ │ ├── spot_hardware_usb_native.h │ │ │ ├── spot_hardware_usb_native_Microsoft_SPOT_Hardware_UsbClient_UsbController.cpp │ │ │ ├── spot_hardware_usb_native_Microsoft_SPOT_Hardware_UsbClient_UsbStream.cpp │ │ │ └── spot_hardware_usb_stub.cpp │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── spot_hardware.h │ │ ├── spot_hardware_fastcompile.cpp │ │ ├── spot_hardware_native.cpp │ │ ├── spot_hardware_native.h │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_AnalogInput.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_AnalogOutput.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_Battery.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_Battery__ChargerModel.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_Cpu.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_HardwareProvider.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_I2CDevice.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_I2CDevice__Configuration.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_InputPort.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_InterruptPort.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_LargeBuffer.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_NativeEventDispatcher_mshl.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_OutputPort.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_Port.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_PowerState.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_SPI.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_SPI__Configuration.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_TristatePort.cpp │ │ ├── spot_hardware_native_Microsoft_SPOT_Hardware_Watchdog.cpp │ │ ├── spot_hardware_native_microsoft_spot_eventsink.cpp │ │ └── spot_hardware_stub.cpp │ ├── SPOT_IO │ │ ├── SPOT_IO.vcproj │ │ ├── SPOT_IO_stub.vcproj │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── spot_io.h │ │ ├── spot_io_fastcompile.cpp │ │ ├── spot_io_native.cpp │ │ ├── spot_io_native.h │ │ ├── spot_io_native_Microsoft_SPOT_IO_NativeFileStream.cpp │ │ ├── spot_io_native_Microsoft_SPOT_IO_NativeFindFile.cpp │ │ ├── spot_io_native_Microsoft_SPOT_IO_NativeIO.cpp │ │ ├── spot_io_native_Microsoft_SPOT_IO_RemovableMedia.cpp │ │ ├── spot_io_native_Microsoft_SPOT_IO_VolumeInfo.cpp │ │ └── spot_io_stub.cpp │ ├── SPOT_Net │ │ ├── SPOT_Net.h │ │ ├── SPOT_Net.vcproj │ │ ├── SPOT_Net_stub.vcproj │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── spot_net_fastcompile.cpp │ │ ├── spot_net_native.cpp │ │ ├── spot_net_native.h │ │ ├── spot_net_native_Microsoft_SPOT_Net_NetworkInformation_NetworkInterface.cpp │ │ ├── spot_net_native_Microsoft_SPOT_Net_NetworkInformation_Wireless80211.cpp │ │ ├── spot_net_native_Microsoft_SPOT_Net_SocketNative.cpp │ │ └── spot_net_stub.cpp │ ├── SPOT_Net_Security │ │ ├── SPOT_Net_Security.h │ │ ├── SPOT_Net_Security.vcproj │ │ ├── SPOT_Net_Security_stub.vcproj │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── spot_net_security_native.cpp │ │ ├── spot_net_security_native.h │ │ ├── spot_net_security_native_Microsoft_SPOT_Net_Security_SslNative.cpp │ │ └── spot_net_security_native_stub.cpp │ ├── SPOT_TimeService │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── spot_Time_native.cpp │ │ ├── spot_Time_native.h │ │ ├── spot_Time_native_Microsoft_SPOT_Time_TimeService.cpp │ │ ├── spot_Time_native_stub.cpp │ │ ├── spot_time.h │ │ └── spot_time_fastcompile.cpp │ ├── SPOT_Touch │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── spot_touch.h │ │ ├── spot_touch_fastcompile.cpp │ │ ├── spot_touch_native.cpp │ │ ├── spot_touch_native.h │ │ ├── spot_touch_native_Microsoft_SPOT_Touch_Ink.cpp │ │ ├── spot_touch_native_Microsoft_SPOT_Touch_TouchCollectorConfiguration.cpp │ │ ├── spot_touch_native_Microsoft_SPOT_Touch_TouchEventProcessor.cpp │ │ ├── spot_touch_native_Microsoft_SPOT_Touch_TouchPanel.cpp │ │ └── spot_touch_stub.cpp │ ├── SPOT_Update │ │ ├── SPOT_Update.h │ │ ├── dotNetMF.proj │ │ ├── spot_update_fastcompile.cpp │ │ ├── spot_update_native.cpp │ │ ├── spot_update_native.h │ │ └── spot_update_native_Microsoft_SPOT_MFUpdate_MFNativeUpdate.cpp │ ├── SecurityPkcs11 │ │ ├── dotNetMF.proj │ │ ├── security_pkcs11.h │ │ ├── security_pkcs11_fastcompile.cpp │ │ ├── security_pkcs11_native.cpp │ │ ├── security_pkcs11_native.h │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_Cryptoki.cpp │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_CryptokiDigest.cpp │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_CryptokiObject.cpp │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_CryptokiRNG.cpp │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_CryptokiSign.cpp │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_CryptokiVerify.cpp │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_Decryptor.cpp │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_Encryptor.cpp │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_FindObjectEnum.cpp │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_Session.cpp │ │ ├── security_pkcs11_native_Microsoft_SPOT_Cryptoki_Slot.cpp │ │ └── security_pkcs11_native_System_Security_Cryptography_CryptoKey.cpp │ ├── System_Xml │ │ ├── System_Xml.vcproj │ │ ├── System_Xml_stub.vcproj │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── system_xml.h │ │ ├── system_xml_fastcompile.cpp │ │ ├── system_xml_native.cpp │ │ ├── system_xml_native.h │ │ ├── system_xml_native_System_Xml_XmlNameTable.cpp │ │ ├── system_xml_native_System_Xml_XmlReader.cpp │ │ └── system_xml_stub.cpp │ ├── Windows_Devices │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_stub.proj │ │ ├── windows_devices.h │ │ ├── windows_devices_fastcompile.cpp │ │ ├── windows_devices_native.cpp │ │ ├── windows_devices_native.h │ │ ├── windows_devices_native_Windows_Devices_Gpio_GpioController.cpp │ │ ├── windows_devices_native_Windows_Devices_Gpio_GpioPin.cpp │ │ ├── windows_devices_native_Windows_Devices_Spi_SpiBusInfo.cpp │ │ ├── windows_devices_native_Windows_Devices_Spi_SpiDevice.cpp │ │ └── windows_devices_stub.cpp │ └── dotNetMF.proj ├── Messaging │ ├── Messaging.cpp │ ├── Messaging.vcproj │ ├── Messaging_stub.cpp │ ├── Messaging_stub.vcproj │ ├── dotNetMF.proj │ └── dotNetMF_stub.proj ├── StartupLib │ ├── CLRStartup.cpp │ ├── CLRStartup.h │ ├── CLR_StartUpLib.vcproj │ └── dotNetMF.proj ├── Tools │ ├── BuildHelper │ │ ├── BuildHelper.cpp │ │ ├── BuildHelper.vcproj │ │ ├── dotNetMF.proj │ │ └── stdafx.h │ ├── CorHelper │ │ ├── CorHelper.vcproj │ │ ├── corhlpr.cpp │ │ ├── dotNetMF.proj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── EmulatorInterface │ │ ├── EmulatorException.cs │ │ ├── EmulatorInterface.csproj │ │ ├── IBattery.cs │ │ ├── IBlockStorage.cs │ │ ├── ICom.cs │ │ ├── IDigest.cs │ │ ├── IEmulator.cs │ │ ├── IEncryption.cs │ │ ├── IEvents.cs │ │ ├── IFS.cs │ │ ├── IGpio.cs │ │ ├── IHal.cs │ │ ├── II2c.cs │ │ ├── IKeyManagement.cs │ │ ├── ILcd.cs │ │ ├── IMemory.cs │ │ ├── IProtectedDataStore.cs │ │ ├── IRandom.cs │ │ ├── ISerial.cs │ │ ├── ISession.cs │ │ ├── ISignature.cs │ │ ├── ISockets.cs │ │ ├── ISpi.cs │ │ ├── ISsl.cs │ │ ├── ITime.cs │ │ ├── ITouchPanel.cs │ │ ├── IUpdateBackupProvider.cs │ │ ├── IUpdateProvider.cs │ │ ├── IUpdateStorageProvider.cs │ │ ├── IUpdateValidationProvider.cs │ │ ├── IUsb.cs │ │ └── IWatchdog.cs │ ├── Include │ │ ├── AssemblyParser.h │ │ ├── AssemblyReparser.h │ │ ├── CorError.h │ │ ├── CorHdr.h │ │ ├── HAL_Windows.h │ │ ├── Include.cpp │ │ ├── Tools_Include.vcproj │ │ ├── WatchAssemblyBuilder.h │ │ ├── cor.h │ │ ├── corhlpr.h │ │ ├── corsym.h │ │ └── dotNetMF.proj │ ├── MetaDataProcessor │ │ ├── KeyGen.cpp │ │ ├── KeyGen.h │ │ ├── MetaDataProcessor.cpp │ │ ├── MetaDataProcessor.vcproj │ │ ├── dotNetMF.proj │ │ └── stdafx.h │ ├── Parser │ │ ├── AssemblyParser.cpp │ │ ├── AssemblyParserDump.cpp │ │ ├── AssemblyReparser.cpp │ │ ├── ByteCodeParser.cpp │ │ ├── ByteCodeParser_Load.cpp │ │ ├── ByteCodeParser_Save.cpp │ │ ├── Linker.cpp │ │ ├── Parser.vcproj │ │ ├── Support.cpp │ │ ├── dotNetMF.proj │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── PlatformDesigner │ │ ├── ArrayToList.cmd │ │ ├── ComponentBuilder │ │ │ ├── ComponentBuilder.csproj │ │ │ ├── ComponentBuilderForm.Designer.cs │ │ │ ├── ComponentBuilderForm.cs │ │ │ ├── ComponentBuilderForm.resx │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ ├── ComponentObjectModel │ │ │ ├── BuildScriptWrapper.cs │ │ │ ├── CodeGenerator.cs │ │ │ ├── ComponentObjectModel.csproj │ │ │ ├── InventoryFormat.cs │ │ │ ├── InventoryFormat.xsd │ │ │ ├── InventoryFormat.xsx │ │ │ ├── InventoryFormatEx.cs │ │ │ ├── InventoryHelper.cs │ │ │ ├── MsBuildWrapper.cs │ │ │ ├── ScatterfileSchema.cs │ │ │ ├── ScatterfileSchema.xsd │ │ │ ├── ScatterfileSchema.xsx │ │ │ ├── ScatterfileSchemaEx.cs │ │ │ └── ScatterfileWrapper.cs │ │ ├── PlatformDesigner.sln │ │ └── build.dirproj │ ├── StubWinHal │ │ ├── StubWinHal.cpp │ │ ├── corlib_native.cpp │ │ ├── dotNetMF.proj │ │ ├── minheap.cpp │ │ ├── mintime.cpp │ │ └── stdafx.h │ ├── TFConvert │ │ ├── Fonts │ │ │ └── TrueType │ │ │ │ ├── Kooten.ttf │ │ │ │ ├── Linds.ttf │ │ │ │ ├── Miramo.ttf │ │ │ │ ├── Miramob.ttf │ │ │ │ ├── Peric.ttf │ │ │ │ ├── Pericl.ttf │ │ │ │ ├── Pesca.ttf │ │ │ │ ├── Pescab.ttf │ │ │ │ ├── TrueTypeFonts.wixproj │ │ │ │ └── TrueTypeFonts.wxs │ │ ├── TFConvert.cpp │ │ ├── TFConvert.vcproj │ │ ├── dotNetMF.proj │ │ └── stdafx.h │ ├── Tools.settings │ ├── build.dirproj │ └── dotNetMF.proj ├── build.dirproj ├── dotNetMF.proj └── dotNetMF.proj.port ├── CMSIS ├── CMSIS │ └── RTOS │ │ └── RTX │ │ └── dotNetMF.proj └── ReadMe.md ├── DeviceCode ├── Cores │ ├── arm │ │ └── Processors │ │ │ ├── CortexMx │ │ │ ├── GlobalLock │ │ │ │ ├── SmartPtr_cortex.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── ItmPort │ │ │ │ ├── ItmPort.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── TinyHal │ │ │ │ ├── Aborts.cpp │ │ │ │ ├── GNU_S │ │ │ │ │ ├── AppEntry.s │ │ │ │ │ ├── DefaultHandlers_template.s │ │ │ │ │ ├── FirstEntry.s │ │ │ │ │ ├── IDelayLoop.s │ │ │ │ │ ├── Interlocked.s │ │ │ │ │ └── VectorTable_Template.s │ │ │ │ ├── RVD_S │ │ │ │ │ ├── AppEntry.s │ │ │ │ │ ├── DefaultHandlers_Template.s │ │ │ │ │ ├── FirstEntry.s │ │ │ │ │ ├── IDelayLoop.s │ │ │ │ │ ├── Interlocked.s │ │ │ │ │ └── VectorTable_Template.s │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── dotNetMF_loader.proj │ │ │ └── cmsis_generic.h │ │ │ └── dotNetMF.proj │ └── dotNetMF.proj ├── Drivers │ ├── Backlight │ │ ├── GPIO │ │ │ ├── GPIO_Backlight_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── gpio_backlight.h │ │ ├── SPI │ │ │ ├── SPI_Backlight.h │ │ │ ├── SPI_Backlight_driver.cpp │ │ │ ├── SPI_Backlight_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── spi_backlight_fastcompile.cpp │ │ ├── dotNetMF.proj │ │ └── stubs │ │ │ ├── Backlight_stubs_functions.cpp │ │ │ ├── backlight_stubs_config.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── fastcompile_backlight_stubs.cpp │ │ │ ├── stubs_config.cpp │ │ │ └── stubs_functions.cpp │ ├── BatteryCharger │ │ ├── Charger_DualStatus │ │ │ ├── Charger_DualStatus.h │ │ │ ├── Charger_DualStatus_driver.cpp │ │ │ ├── Charger_DualStatus_fastcompile.cpp │ │ │ ├── Charger_DualStatus_functions.cpp │ │ │ └── dotNetMF.proj │ │ ├── dotNetMF.proj │ │ └── stubs │ │ │ ├── BatteryCharger_stubs_config.cpp │ │ │ ├── BatteryCharger_stubs_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── fastcompile_batterycharger_stubs.cpp │ │ │ ├── stubs_config.cpp │ │ │ └── stubs_functions.cpp │ ├── BatteryMeasurement │ │ ├── AD7466 │ │ │ ├── AD7466.h │ │ │ ├── AD7466_driver.cpp │ │ │ ├── AD7466_fastcompile.cpp │ │ │ ├── AD7466_functions.cpp │ │ │ └── dotNetMF.proj │ │ ├── BatteryMeasurement_config.cpp │ │ ├── dotNetMF.proj │ │ └── stubs │ │ │ ├── BatteryMeas_stubs_functions.cpp │ │ │ ├── BatteryMeasurement_stubs_config.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── fastcompile_BatteryMeasurement_stubs.cpp │ │ │ ├── stubs_config.cpp │ │ │ └── stubs_functions.cpp │ ├── BatteryModel │ │ ├── IML200425_2 │ │ │ ├── IML200425_2_config.cpp │ │ │ └── dotNetMF.proj │ │ ├── ML1A_2 │ │ │ ├── ML1A_2_config.cpp │ │ │ └── dotNetMF.proj │ │ ├── ML2_2 │ │ │ ├── ML2_2_config.cpp │ │ │ └── dotNetMF.proj │ │ ├── ML3_2 │ │ │ ├── ML3_2_config.cpp │ │ │ └── dotNetMF.proj │ │ ├── MR11_2367 │ │ │ ├── MR11_2367_config.cpp │ │ │ └── dotNetMF.proj │ │ ├── PD2430 │ │ │ ├── PD2430_config.cpp │ │ │ └── dotNetMF.proj │ │ ├── PD3032 │ │ │ ├── PD3032_config.cpp │ │ │ ├── PD3032_functions.h │ │ │ └── dotNetMF.proj │ │ ├── dotNetMF.proj │ │ └── stubs │ │ │ ├── BatteryModel_stubs_config.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── stubs_config.cpp │ ├── BlockStorage │ │ ├── Flash │ │ │ ├── AM29DL_16 │ │ │ │ ├── AM29DL_16.h │ │ │ │ ├── AM29DL_16_driver.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── AM29DL_32 │ │ │ │ ├── AM29DL_32.h │ │ │ │ ├── AM29DL_32_driver.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── I28F_16 │ │ │ │ ├── I28F_16.h │ │ │ │ ├── I28F_16_driver.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── SST39WF_16 │ │ │ │ ├── SST39WF_16.h │ │ │ │ ├── SST39WF_16_driver.cpp │ │ │ │ └── dotNetMF.proj │ │ │ └── dotNetMF.proj │ │ ├── SD │ │ │ ├── SD_BL.h │ │ │ ├── SD_BL_driver.cpp │ │ │ ├── Stubs │ │ │ │ ├── SDConfig_stubs.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── dotNetMF.proj │ │ │ └── readme.txt │ │ ├── WearLeveling │ │ │ ├── BS_WearLeveling.h │ │ │ ├── BS_WearLeveling_Driver.cpp │ │ │ └── dotNetMF.proj │ │ └── dotNetMF.proj │ ├── Display │ │ ├── A025DL02 │ │ │ ├── A025DL02.h │ │ │ ├── A025DL02_driver.cpp │ │ │ ├── A025DL02_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── fastcompile_A025DL02.cpp │ │ │ └── stubs │ │ │ │ ├── A025DL02_config_stubs.cpp │ │ │ │ └── dotNetMF.proj │ │ ├── HD66773R │ │ │ ├── HD66773R.h │ │ │ ├── HD66773R_driver.cpp │ │ │ ├── HD66773R_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── fastcompile_HD66773R.cpp │ │ ├── LQ035Q7DB02 │ │ │ ├── LQ035Q7DB02.h │ │ │ ├── LQ035Q7DB02_driver.cpp │ │ │ ├── LQ035Q7DB02_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── fastcompile_LQ035Q7DB02.cpp │ │ ├── SSD1289 │ │ │ ├── SSD1289.h │ │ │ ├── SSD1289_driver.cpp │ │ │ ├── SSD1289_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── fastcompile_SSD1289.cpp │ │ ├── TD022SHEB2 │ │ │ ├── TD022SHEB2.h │ │ │ ├── TD022SHEB2_driver.cpp │ │ │ ├── TD022SHEB2_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── fastcompile_TD022SHEB2.cpp │ │ ├── TD035STEB1 │ │ │ ├── TD035STEB1.h │ │ │ ├── TD035STEB1_driver.cpp │ │ │ ├── TD035STEB1_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── fastcompile_TD035STEB1.cpp │ │ ├── TX09D71VM1CCA │ │ │ ├── TX09D71VM1CCA.h │ │ │ ├── TX09D71VM1CCA_driver.cpp │ │ │ ├── TX09D71VM1CCA_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── fastcompile_TX09D71VM1CCA.cpp │ │ │ └── stubs │ │ │ │ ├── TX09D71VM1CCA_config_stubs.cpp │ │ │ │ └── dotNetMF.proj │ │ ├── TextFonts │ │ │ ├── Font8x15 │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── font8x15.cpp │ │ │ ├── Font8x8 │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── font8x8.cpp │ │ │ └── dotNetMF.proj │ │ ├── dotNetMF.proj │ │ └── stubs │ │ │ ├── Display_stubs_config.cpp │ │ │ ├── Display_stubs_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── fastcompile_display_stubs.cpp │ │ │ ├── stubs_config.cpp │ │ │ └── stubs_functions.cpp │ ├── Ethernet │ │ ├── dotNetMF.proj │ │ ├── enc28j60 │ │ │ ├── dotNetMF.proj │ │ │ ├── enc28j60.cpp │ │ │ ├── enc28j60.h │ │ │ ├── enc28j60_driver.cpp │ │ │ └── enc28j60_driver.h │ │ ├── enc28j60_lwip │ │ │ ├── dotNetMF.proj │ │ │ ├── enc28j60_lwip.cpp │ │ │ ├── enc28j60_lwip.h │ │ │ ├── enc28j60_lwip_driver.cpp │ │ │ └── enc28j60_lwip_driver.h │ │ ├── loopback │ │ │ ├── dotNetMF.proj │ │ │ ├── loopback.cpp │ │ │ ├── loopback_driver.cpp │ │ │ ├── loopback_driver.h │ │ │ └── loopback_driver_config.cpp │ │ └── loopback_lwip │ │ │ ├── dotNetMF.proj │ │ │ ├── loopback_lwip.cpp │ │ │ ├── loopback_lwip_driver.cpp │ │ │ ├── loopback_lwip_driver.h │ │ │ └── loopback_lwip_driver_config.cpp │ ├── FS │ │ ├── FAT │ │ │ ├── FAT_FS.cpp │ │ │ ├── FAT_FS.h │ │ │ ├── FAT_FS_Utility.cpp │ │ │ ├── FAT_FS_Utility.h │ │ │ ├── FAT_File.cpp │ │ │ ├── FAT_FileHandle.cpp │ │ │ ├── FAT_LogicDisk.cpp │ │ │ ├── FAT_MemoryManager.cpp │ │ │ ├── FAT_SectorCache.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── fs.cpp │ │ ├── dotNetMF.proj │ │ └── stubs │ │ │ ├── dotNetMF.proj │ │ │ └── fs_stubs.cpp │ ├── LargeBuffer │ │ ├── Stubs │ │ │ ├── LargeBuffer_stubs.cpp │ │ │ └── dotNetMF.proj │ │ └── Test │ │ │ ├── LargeBuffer_test.cpp │ │ │ └── dotNetMF.proj │ ├── MFUpdate │ │ ├── MicroBooterUpdate.cpp │ │ ├── MicroBooterUpdate.h │ │ ├── Storage │ │ │ ├── BlockStorageUpdate.cpp │ │ │ ├── BlockStorageUpdate.h │ │ │ ├── FS │ │ │ │ ├── FSUpdateStorage.cpp │ │ │ │ ├── FSUpdateStorage.h │ │ │ │ └── dotNetMF.proj │ │ │ └── dotNetMF.proj │ │ ├── Validation │ │ │ ├── CRC │ │ │ │ ├── CrcUpdateValidation.cpp │ │ │ │ ├── CrcUpdateValidation.h │ │ │ │ └── dotNetMF.proj │ │ │ ├── SSL │ │ │ │ ├── SslUpdateValidation.cpp │ │ │ │ ├── SslUpdateValidation.h │ │ │ │ └── dotNetMF.proj │ │ │ └── X509 │ │ │ │ ├── X509UpdateValidation.cpp │ │ │ │ ├── X509UpdateValidation.h │ │ │ │ └── dotNetMF.proj │ │ └── dotNetMF.proj │ ├── Sample │ │ ├── Backlight │ │ │ ├── GPIO │ │ │ │ ├── gpio_backlight_config.cpp │ │ │ │ └── gpio_backlight_config.proj │ │ │ └── SPI │ │ │ │ ├── SPI_Backlight_config.cpp │ │ │ │ └── SPI_Backlight_config.proj │ │ ├── BatteryCharger │ │ │ └── Charger_DualStatus │ │ │ │ ├── Charger_DualStatus_config.cpp │ │ │ │ └── Charger_DualStatus_config.proj │ │ ├── BatteryMeasurement │ │ │ └── AD7466 │ │ │ │ ├── AD7466_config.cpp │ │ │ │ └── AD7466_config.proj │ │ └── Display │ │ │ ├── A025DL02 │ │ │ ├── A025DL02_config.cpp │ │ │ └── A025DL02_config.proj │ │ │ ├── LQ035Q7DB02 │ │ │ ├── LQ035Q7DB02_config.cpp │ │ │ └── LQ035Q7DB02_config.proj │ │ │ ├── TD022SHEB2 │ │ │ ├── TD022SHEB2_config.cpp │ │ │ └── TD022SHEB2_config.proj │ │ │ └── TD035STEB1 │ │ │ ├── TD035STEB1_config.cpp │ │ │ └── TD035STEB1_config.proj │ ├── Stubs │ │ ├── Backlight │ │ │ ├── GPIO │ │ │ │ ├── GPIO_backlight_config_stubs.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── SPI │ │ │ │ ├── SPI_Backlight_config_stubs.cpp │ │ │ │ └── dotNetMF.proj │ │ │ └── dotNetMF.proj │ │ ├── BlockStorage │ │ │ ├── AddDevices │ │ │ │ ├── Bl_addDevices_stubs.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── Config │ │ │ │ ├── blconfig_stubs.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── Driver │ │ │ │ ├── BlockStorageDriver_stubs.cpp │ │ │ │ ├── BlockStorageDriver_stubs.h │ │ │ │ └── dotNetMF.proj │ │ │ └── dotNetMF.proj │ │ ├── Crypto_Config │ │ │ ├── PKCS11_Config_stub.cpp │ │ │ └── dotNetMF.proj │ │ ├── Display │ │ │ └── LCDController │ │ │ │ ├── LCDControllerConfig_stubs.cpp │ │ │ │ └── dotNetMF.proj │ │ ├── GlobalLock │ │ │ ├── GlobalLock_stubs.cpp │ │ │ └── dotNetMF.proj │ │ ├── Network │ │ │ ├── Config │ │ │ │ ├── Network_config_stubs.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── Ethernet │ │ │ │ ├── ENC28J60_Config │ │ │ │ │ ├── dotNetMF.proj │ │ │ │ │ └── enc28j60_config_stubs.cpp │ │ │ │ ├── ENC28J60_LWIP_Config │ │ │ │ │ ├── dotNetMF.proj │ │ │ │ │ └── enc28j60_LWIP_config_stubs.cpp │ │ │ │ ├── EthernetDriver_stubs.cpp │ │ │ │ ├── EthernetDriver_stubs.h │ │ │ │ └── dotNetMF.proj │ │ │ ├── Loopback │ │ │ │ ├── dotNetMF.proj │ │ │ │ ├── loopback_driver.h │ │ │ │ └── loopback_stubs.cpp │ │ │ └── dotNetMF.proj │ │ ├── Processor │ │ │ ├── dotNetMF.proj │ │ │ ├── stubs_DA │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_DA.cpp │ │ │ ├── stubs_DMA │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_DMA.cpp │ │ │ ├── stubs_EBIU │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_EBIU.cpp │ │ │ ├── stubs_I2C │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_I2C.cpp │ │ │ ├── stubs_INTC │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_INTC.cpp │ │ │ ├── stubs_LCD │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_LCD.cpp │ │ │ ├── stubs_MMU │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_MMU.cpp │ │ │ ├── stubs_PCU │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_PCU.cpp │ │ │ ├── stubs_PWM │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_pwm.cpp │ │ │ ├── stubs_PerfCounter │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_Perf.cpp │ │ │ ├── stubs_PreStackInit │ │ │ │ ├── GNU_S │ │ │ │ │ └── PreStackInit_stub.s │ │ │ │ ├── RVD_S │ │ │ │ │ └── PreStackInit_stub.s │ │ │ │ └── dotNetMF.proj │ │ │ ├── stubs_SPI │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_SPI.cpp │ │ │ ├── stubs_USART │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_USART.cpp │ │ │ ├── stubs_USB │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_USB.cpp │ │ │ ├── stubs_WATCHDOG │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_WATCHDOG.cpp │ │ │ ├── stubs_analog │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_analog.cpp │ │ │ ├── stubs_bootstrap │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_bootstrap.cpp │ │ │ ├── stubs_cache │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_cache.cpp │ │ │ ├── stubs_cmu │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_cmu.cpp │ │ │ ├── stubs_gpio │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_gpio.cpp │ │ │ ├── stubs_power │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_power.cpp │ │ │ └── stubs_time │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── stubs_functions_time.cpp │ │ ├── TempForGCC │ │ │ ├── dotNetMF.proj │ │ │ └── missFunctions.cpp │ │ ├── TouchPanel │ │ │ └── Config │ │ │ │ ├── TouchPanel_config_stubs.cpp │ │ │ │ └── dotNetMF.proj │ │ ├── USB_Config │ │ │ ├── dotNetMF.proj │ │ │ └── usb_config_stub.cpp │ │ ├── VirtualKey │ │ │ ├── dotNetMF.proj │ │ │ └── virtualkey_stubs.cpp │ │ └── dotNetMF.proj │ ├── Thermistor │ │ ├── Thermistor.cpp │ │ ├── dotNetMF.proj │ │ └── stubs │ │ │ ├── Thermistor_stubs_functions.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── stubs_functions.cpp │ ├── TimeService │ │ └── stubs │ │ │ ├── dotNetMF.proj │ │ │ ├── fastcompile_timeservice_stubs.cpp │ │ │ └── timeservice_stubs_functions.cpp │ ├── TouchPanel │ │ ├── ADS7843 │ │ │ ├── ads7843_driver.cpp │ │ │ ├── ads7843_driver.h │ │ │ ├── ads7843_fastcompile.cpp │ │ │ ├── ads7843_functions.cpp │ │ │ └── dotNetMF.proj │ │ ├── TSC2046 │ │ │ ├── dotNetMF.proj │ │ │ ├── tsc2046_driver.cpp │ │ │ ├── tsc2046_driver.h │ │ │ ├── tsc2046_fastcompile.cpp │ │ │ └── tsc2046_functions.cpp │ │ ├── dotNetMF.proj │ │ └── stubs │ │ │ ├── dotNetMF.proj │ │ │ ├── fastcompile_touchpanel_stubs.cpp │ │ │ ├── touchpanel_stubs_config.cpp │ │ │ └── touchpanel_stubs_functions.cpp │ ├── dotNetMF.proj │ └── sockets │ │ ├── dotNetMF.proj │ │ └── stubs │ │ ├── Sockets_stubs_functions.cpp │ │ ├── dotNetMF.proj │ │ └── stubs_functions.cpp ├── Initialization │ ├── MasterConfig.h │ ├── OEM_Model_SKU_NetworkID.cpp │ ├── dotNetMF.proj │ ├── dotNetMF_loader.proj │ └── tinyhal.cpp ├── Targets │ ├── Native │ │ ├── STM32 │ │ │ ├── DeviceCode │ │ │ │ ├── STM32_Analog │ │ │ │ │ ├── STM32_AD_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_Bootstrap │ │ │ │ │ ├── STM32_bootstrap.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_DA │ │ │ │ │ ├── STM32_DA_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_Flash │ │ │ │ │ ├── STM32_Flash.h │ │ │ │ │ ├── STM32_Flash_driver.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_GPIO │ │ │ │ │ ├── STM32_GPIO_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_I2C │ │ │ │ │ ├── STM32_i2c_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_IntC │ │ │ │ │ ├── STM32_intc_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_PWM │ │ │ │ │ ├── STM32_pwm_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_Power │ │ │ │ │ ├── STM32_Power_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_SPI │ │ │ │ │ ├── STM32_SPI_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_Time │ │ │ │ │ ├── STM32_time_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_USART │ │ │ │ │ ├── STM32_usart_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32_USB │ │ │ │ │ ├── STM32_usb_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── core_cm3.h │ │ │ │ ├── dotNetMF.proj │ │ │ │ ├── stm32f10x.h │ │ │ │ └── system_stm32f10x.h │ │ │ ├── ManagedCode │ │ │ │ ├── Hardware │ │ │ │ │ ├── CPU.cs │ │ │ │ │ ├── HardwareProvider.cs │ │ │ │ │ └── STM32_hardware.csproj │ │ │ │ ├── SystemAssemblies.datproj │ │ │ │ └── build.dirproj │ │ │ ├── STM32.settings │ │ │ ├── STM32_template_selector.h │ │ │ ├── dotNetMF.proj │ │ │ └── processor_selector.h │ │ ├── STM32F4 │ │ │ ├── DeviceCode │ │ │ │ ├── STM32F4_Analog │ │ │ │ │ ├── STM32F4_AD_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_Bootstrap │ │ │ │ │ ├── GNU_S │ │ │ │ │ │ ├── DefaultHandlers.s │ │ │ │ │ │ └── VectorTable.s │ │ │ │ │ ├── RVD_S │ │ │ │ │ │ ├── DefaultHandlers.s │ │ │ │ │ │ └── VectorTable.s │ │ │ │ │ ├── STM32F4_bootstrap.cpp │ │ │ │ │ ├── dotNetMF.proj │ │ │ │ │ └── retarget.c │ │ │ │ ├── STM32F4_DA │ │ │ │ │ ├── STM32F4_DA_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_ETH_lwip_OS │ │ │ │ │ ├── EthernetDriver_STM32F4.cpp │ │ │ │ │ ├── STM32F4_ETH_driver.cpp │ │ │ │ │ ├── STM32F4_ETH_driver.h │ │ │ │ │ ├── STM32F4_ETH_gpio.cpp │ │ │ │ │ ├── STM32F4_ETH_gpio.h │ │ │ │ │ ├── STM32F4_ETH_lwip.cpp │ │ │ │ │ ├── STM32F4_ETH_lwip.h │ │ │ │ │ ├── STM32F4_ETH_lwip_adapter.cpp │ │ │ │ │ ├── STM32F4_ETH_lwip_adapter.h │ │ │ │ │ ├── STM32F4_ETH_phy.cpp │ │ │ │ │ ├── STM32F4_ETH_phy.h │ │ │ │ │ ├── STM32F4_ETH_rx_desc.cpp │ │ │ │ │ ├── STM32F4_ETH_rx_desc.h │ │ │ │ │ ├── STM32F4_ETH_tx_desc.cpp │ │ │ │ │ ├── STM32F4_ETH_tx_desc.h │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_Flash │ │ │ │ │ ├── STM32F4_Flash.h │ │ │ │ │ ├── STM32F4_Flash_driver.cpp │ │ │ │ │ ├── STM32F4x9_Flash_driver.cpp │ │ │ │ │ ├── dotNetMF.proj │ │ │ │ │ └── dotNetMF_x9.proj │ │ │ │ ├── STM32F4_GPIO │ │ │ │ │ ├── STM32F4_GPIO_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_I2C │ │ │ │ │ ├── STM32F4_i2c_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_IntC │ │ │ │ │ ├── STM32F4_intc_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_PWM │ │ │ │ │ ├── STM32F4_pwm_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_Power │ │ │ │ │ ├── STM32F4_Power_functions.cpp │ │ │ │ │ ├── STM32F4_Power_functions.h │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_RTC │ │ │ │ │ ├── RTC_decl.h │ │ │ │ │ ├── STM32F4_RTC_functions.cpp │ │ │ │ │ ├── Time_Pal_Rtc │ │ │ │ │ │ ├── dotNetMF.proj │ │ │ │ │ │ └── time_functions_rtc.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_Random │ │ │ │ │ ├── STM32F4_Random_functions.cpp │ │ │ │ │ ├── STM32F4_Random_functions.h │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_SPI │ │ │ │ │ ├── STM32F4_SPI_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_Time │ │ │ │ │ ├── STM32F4_time_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_USART │ │ │ │ │ ├── STM32F4_usart_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── STM32F4_USB │ │ │ │ │ ├── STM32F4_usb_functions.cpp │ │ │ │ │ ├── dotNetMF.proj │ │ │ │ │ └── usb_def.h │ │ │ │ ├── STM32F4_security │ │ │ │ │ ├── STM32F4_security_functions.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ ├── dotNetMF.proj │ │ │ │ ├── stm32f2xx.h │ │ │ │ ├── stm32f4xx.h │ │ │ │ ├── system_stm32f2xx.h │ │ │ │ └── system_stm32f4xx.h │ │ │ ├── ManagedCode │ │ │ │ ├── Hardware │ │ │ │ │ ├── CPU.cs │ │ │ │ │ ├── HardwareProvider.cs │ │ │ │ │ └── STM32F4_hardware.csproj │ │ │ │ ├── SystemAssemblies.datproj │ │ │ │ └── build.dirproj │ │ │ ├── STM32F2.settings │ │ │ ├── STM32F2_template_selector.h │ │ │ ├── STM32F4.settings │ │ │ ├── STM32F4_template_selector.h │ │ │ ├── dotNetMF.proj │ │ │ └── processor_selector.h │ │ ├── Template │ │ │ ├── DeviceCode │ │ │ │ ├── Various.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── ManagedCode │ │ │ │ ├── Hardware │ │ │ │ │ ├── CPU.cs │ │ │ │ │ ├── HardwareProvider.cs │ │ │ │ │ └── Template_hardware.csproj │ │ │ │ └── build.dirproj │ │ │ ├── Template.settings │ │ │ ├── Template_template_selector.h │ │ │ ├── dotNetMF.proj │ │ │ └── processor_selector.h │ │ └── dotNetMF.proj │ ├── OS │ │ ├── CMSIS_RTOS │ │ │ ├── CMSIS_RTOS.settings │ │ │ ├── CMSIS_RTOS_template_selector.h │ │ │ ├── CpuOsIrq.h │ │ │ ├── DeviceCode │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── lwip_1_4_1_os │ │ │ │ │ ├── arch │ │ │ │ │ ├── cc.h │ │ │ │ │ ├── dotNetMF.proj │ │ │ │ │ ├── mutex │ │ │ │ │ ├── perf.h │ │ │ │ │ ├── sys_arch.cpp │ │ │ │ │ ├── sys_arch.h │ │ │ │ │ ├── sysarch_timeout.h │ │ │ │ │ └── timers.c │ │ │ │ │ └── dotNetMF.proj │ │ │ ├── cmsis_os_cpp.h │ │ │ ├── dotNetMF.proj │ │ │ ├── processor_selector.h │ │ │ └── readme.txt │ │ ├── Win32 │ │ │ ├── CpuOsIrq.h │ │ │ ├── DeviceCode │ │ │ │ ├── WinPcap_Eth │ │ │ │ │ ├── Dependencies │ │ │ │ │ │ └── WINPCAP_IN_NETMF_README.txt │ │ │ │ │ ├── WinPcap_Eth_lwIP_Adapter.cpp │ │ │ │ │ ├── WinPcap_Eth_lwIP_Adapter.h │ │ │ │ │ ├── dotNetMF.proj │ │ │ │ │ ├── pcapif.c │ │ │ │ │ ├── pcapif.h │ │ │ │ │ ├── pcapif_helper.c │ │ │ │ │ └── pcapif_helper.h │ │ │ │ └── dotnetmf.proj │ │ │ ├── EnumFlags.h │ │ │ ├── NamedPipe.h │ │ │ ├── OutputDebugStream.h │ │ │ ├── Win32.settings │ │ │ ├── Win32FileIo.h │ │ │ ├── Win32Handles.h │ │ │ ├── Win32Settings.h │ │ │ ├── Win32SlimLock.h │ │ │ ├── Win32TimerQueue.h │ │ │ ├── Win32_template_selector.h │ │ │ ├── dotNetMF.proj │ │ │ ├── lwip_1_4_1_os │ │ │ │ ├── arch │ │ │ │ │ ├── TimeoutQueue.h │ │ │ │ │ ├── Win32Timeouts.h │ │ │ │ │ ├── bpstruct.h │ │ │ │ │ ├── cc.h │ │ │ │ │ ├── dotNetMF.proj │ │ │ │ │ ├── epstruct.h │ │ │ │ │ ├── perf.h │ │ │ │ │ ├── sio.c │ │ │ │ │ ├── stubs │ │ │ │ │ │ ├── dotNetMF.proj │ │ │ │ │ │ ├── sys_arch_stubs.cpp │ │ │ │ │ │ └── timers_stubs.c │ │ │ │ │ ├── sys_arch.cpp │ │ │ │ │ ├── sys_arch.h │ │ │ │ │ ├── sysarch_timeout.h │ │ │ │ │ └── timers.c │ │ │ │ ├── lwip_1_4_1_os.vcxproj │ │ │ │ ├── lwip_1_4_1_os.vcxproj.filters │ │ │ │ └── readme.txt │ │ │ └── processor_selector.h │ │ ├── Windows │ │ │ ├── Windows.settings │ │ │ ├── Windows_template_selector.h │ │ │ ├── dotNetMF.proj │ │ │ └── processor_selector.h │ │ └── dotNetMF.proj │ └── dotNetMF.proj ├── UnitTests │ ├── Drivers │ │ └── USART │ │ │ └── FlowControl │ │ │ ├── SerialPortDeviceApp │ │ │ ├── Program.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── SerialPortTestApp.csproj │ │ │ └── SerialTestPCApp │ │ │ ├── SerialTest.cpp │ │ │ ├── SerialTest.sln │ │ │ ├── SerialTest.vcproj │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── PAL │ │ ├── HAL_Queue │ │ │ └── HAL_Queue_Test.cpp │ │ └── PKCS11 │ │ │ ├── CryptokiTest.cpp │ │ │ ├── SlotTokenTest.cpp │ │ │ └── dotNetMF.proj │ └── build.dirproj ├── dotNetMF.proj ├── include │ ├── AnalogOut_decl.h │ ├── Analog_decl.h │ ├── AsyncProcCalls_decl.h │ ├── Backlight_decl.h │ ├── BatteryCharger_decl.h │ ├── BatteryMeasurement_decl.h │ ├── BlockStorage_decl.h │ ├── COM_decl.h │ ├── CPU_BOOT_decl.h │ ├── CPU_CACHE_decl.h │ ├── CPU_CMU_decl.h │ ├── CPU_DMA_decl.h │ ├── CPU_EBIU_decl.h │ ├── CPU_GPIO_decl.h │ ├── CPU_INTC_decl.h │ ├── CPU_MMU_decl.h │ ├── CPU_PCU_decl.h │ ├── CPU_SPI_decl.h │ ├── CPU_WATCHDOG_decl.h │ ├── Display_decl.h │ ├── Double_decl.h │ ├── FS_decl.h │ ├── GPIO_button_decl.h │ ├── Gesture_decl.h │ ├── Heap_decl.h │ ├── I2C_decl.h │ ├── Ink_decl.h │ ├── LargeBuffer_decl.h │ ├── MFUpdate_decl.h │ ├── MicroBooter_decl.h │ ├── Network_decl.h │ ├── OSIrqLock.h │ ├── PWM_decl.h │ ├── PerformanceCounters_decl.h │ ├── Piezo_decl.h │ ├── SD_decl.h │ ├── Security_decl.h │ ├── SmartPtr_irq.h │ ├── Sockets_decl.h │ ├── StateDebounce_decl.h │ ├── TimeService_decl.h │ ├── Time_decl.h │ ├── TinyBooterEntry.h │ ├── TinyCLR_Endian.h │ ├── TouchPanel_decl.h │ ├── USART_decl.h │ ├── USB_decl.h │ ├── VirtualKey_decl.h │ ├── drivers.h │ ├── events_decl.h │ ├── graphics_decl.h │ ├── instrumentation_decl.h │ ├── io_decl.h │ ├── netmf_errors.h │ ├── palevent_decl.h │ ├── power_decl.h │ ├── tests.h │ ├── tinycrt_decl.h │ ├── tinyhal.h │ ├── tinyhal_releaseinfo.h │ ├── tinyhal_types.h │ └── tinypal.h └── pal │ ├── AsyncProcCall │ ├── Completions.cpp │ ├── Continuations.cpp │ ├── asyncproccall_fastcompile.cpp │ ├── dotNetMF.proj │ └── stubs │ │ ├── async_stubs.cpp │ │ └── dotNetMF.proj │ ├── BlockStorage │ ├── blockstoragelist.cpp │ ├── dotNetMF.proj │ └── stubs │ │ ├── blockstorageList_stubs.cpp │ │ └── dotNetMF.proj │ ├── Buttons │ ├── GPIO_Buttons.cpp │ ├── GPIO_Buttons.h │ ├── GPIO_Buttons_fastcompile.cpp │ ├── GPIO_config.cpp │ ├── dotNetMF.proj │ └── stubs │ │ ├── buttons_stubs.cpp │ │ ├── buttons_stubs_config.cpp │ │ └── dotNetMF.proj │ ├── COM │ ├── ComDirector.cpp │ ├── Config │ │ ├── DebuggerPort_SSL_config_stub.cpp │ │ └── dotNetMF.proj │ ├── GenericPort.cpp │ ├── dotNetMF.proj │ ├── i2c │ │ ├── dotNetMF.proj │ │ ├── i2c.cpp │ │ ├── i2c.h │ │ └── stubs │ │ │ ├── dotNetMF.proj │ │ │ └── i2c_stubs.cpp │ ├── sockets │ │ ├── Ssl │ │ │ └── stubs │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── ssl_pal_stubs.cpp │ │ ├── openssl │ │ │ ├── dotNetMF.proj │ │ │ ├── openssl.cpp │ │ │ ├── openssl.h │ │ │ └── stubs │ │ │ │ ├── dotNetMF.proj │ │ │ │ └── openssl_pal_stubs.cpp │ │ ├── sockets.h │ │ └── stubs │ │ │ ├── dotNetMF.proj │ │ │ └── sockets_stubs.cpp │ ├── sockets_lwip_os │ │ ├── dotNetMF.proj │ │ ├── sockets_lwip.cpp │ │ ├── sockets_lwip.h │ │ └── stubs │ │ │ ├── dotNetMF.proj │ │ │ └── sockets_stubs_lwip.cpp │ ├── stubs │ │ ├── ComDirector_stubs.cpp │ │ └── dotNetMF.proj │ ├── usart │ │ ├── dotNetMF.proj │ │ ├── stubs │ │ │ ├── dotNetMF.proj │ │ │ └── usart_stubs.cpp │ │ ├── usart.cpp │ │ └── usart.h │ └── usb │ │ ├── dotNetMF.proj │ │ ├── stubs │ │ ├── dotNetMF.proj │ │ ├── usb_config.cpp │ │ └── usb_stubs.cpp │ │ ├── usb.cpp │ │ └── usb.h │ ├── Diagnostics │ ├── Native_Profiler.cpp │ ├── Native_Profiler.h │ ├── dotNetMF.proj │ └── stubs │ │ ├── dotNetMF.proj │ │ └── native_profiler_stubs.cpp │ ├── Double │ ├── dotNetMF.proj │ ├── native_double_pal.cpp │ └── native_double_pal_fastcompile.cpp │ ├── Gesture │ ├── dotNetMF.proj │ ├── gesture_driver.cpp │ ├── gesture_driver.h │ ├── gesture_functions.cpp │ └── stubs │ │ ├── dotNetMF.proj │ │ └── gesture_stubs.cpp │ ├── Ink │ ├── dotNetMF.proj │ ├── ink_driver.cpp │ ├── ink_driver.h │ ├── ink_functions.cpp │ └── stubs │ │ ├── dotNetMF.proj │ │ └── ink_stubs.cpp │ ├── MFUpdate │ ├── MFUpdate.cpp │ ├── dotNetMF.proj │ └── stubs │ │ ├── Config │ │ ├── MFUpdate_config_stub.cpp │ │ └── dotNetMF.proj │ │ ├── MFUpdate_stub.cpp │ │ └── dotNetMF.proj │ ├── OneWire │ ├── DallasSemi │ │ ├── crcutil.cpp │ │ ├── owerr.cpp │ │ ├── ownet.cpp │ │ ├── ownet.h │ │ └── owtran.cpp │ ├── OneWireLinkLevelDriver.cpp │ ├── OneWireLinkLevelSession.cpp │ ├── Stubs │ │ ├── OneWireLinkLevelDriver_stubs.cpp │ │ ├── OneWireLinkLevelSession_stubs.cpp │ │ ├── dotNetMF.proj │ │ └── ownet_stubs.cpp │ ├── dotNetMF.proj │ └── onewire_fastcompile.cpp │ ├── OpenSSL │ └── OpenSSL_1_0_0 │ │ ├── CHANGES │ │ ├── CHANGES.SSLeay │ │ ├── Configure │ │ ├── FAQ │ │ ├── INSTALL │ │ ├── INSTALL.DJGPP │ │ ├── INSTALL.MacOS │ │ ├── INSTALL.NW │ │ ├── INSTALL.OS2 │ │ ├── INSTALL.VMS │ │ ├── INSTALL.W32 │ │ ├── INSTALL.W64 │ │ ├── INSTALL.WCE │ │ ├── Include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ │ ├── LICENSE │ │ ├── MINFO │ │ ├── MacOS │ │ ├── GUSI_Init.cpp │ │ ├── GetHTTPS.src │ │ │ ├── CPStringUtils.cpp │ │ │ ├── CPStringUtils.hpp │ │ │ ├── ErrorHandling.cpp │ │ │ ├── ErrorHandling.hpp │ │ │ ├── GetHTTPS.cpp │ │ │ ├── MacSocket.cpp │ │ │ └── MacSocket.h │ │ ├── OpenSSL.mcp.hqx │ │ ├── Randomizer.cpp │ │ ├── Randomizer.h │ │ ├── TODO │ │ ├── _MWERKS_GUSI_prefix.h │ │ ├── _MWERKS_prefix.h │ │ ├── buildinf.h │ │ ├── mklinks.as.hqx │ │ └── opensslconf.h │ │ ├── Makefile │ │ ├── Makefile.org │ │ ├── Makefile.shared │ │ ├── NEWS │ │ ├── Netware │ │ ├── build.bat │ │ ├── cpy_tests.bat │ │ ├── do_tests.pl │ │ ├── globals.txt │ │ ├── readme.txt │ │ └── set_env.bat │ │ ├── PROBLEMS │ │ ├── README │ │ ├── README.ASN1 │ │ ├── README.ENGINE │ │ ├── VMS │ │ ├── TODO │ │ ├── VMSify-conf.pl │ │ ├── WISHLIST.TXT │ │ ├── install.com │ │ ├── mkshared.com │ │ ├── multinet_shr.opt │ │ ├── openssl_utils.com │ │ ├── socketshr_shr.opt │ │ ├── tcpip_shr_decc.opt │ │ ├── test-includes.com │ │ ├── ucx_shr_decc.opt │ │ ├── ucx_shr_decc_log.opt │ │ └── ucx_shr_vaxc.opt │ │ ├── apps │ │ ├── CA.com │ │ ├── CA.pl │ │ ├── CA.pl.in │ │ ├── CA.sh │ │ ├── Makefile │ │ ├── app_rand.cpp │ │ ├── apps.cpp │ │ ├── apps.h │ │ ├── asn1pars.cpp │ │ ├── ca-cert.srl │ │ ├── ca-key.pem │ │ ├── ca-req.pem │ │ ├── ca.cpp │ │ ├── cert.pem │ │ ├── ciphers.cpp │ │ ├── client.pem │ │ ├── cms.cpp │ │ ├── crl.cpp │ │ ├── crl2p7.cpp │ │ ├── demoCA │ │ │ ├── cacert.pem │ │ │ ├── index.txt │ │ │ ├── private │ │ │ │ └── cakey.pem │ │ │ └── serial │ │ ├── dgst.cpp │ │ ├── dh.cpp │ │ ├── dh1024.pem │ │ ├── dh2048.pem │ │ ├── dh4096.pem │ │ ├── dh512.pem │ │ ├── dhparam.cpp │ │ ├── dotNetMF.proj │ │ ├── dsa-ca.pem │ │ ├── dsa-pca.pem │ │ ├── dsa.cpp │ │ ├── dsa1024.pem │ │ ├── dsa512.pem │ │ ├── dsap.pem │ │ ├── dsaparam.cpp │ │ ├── ec.cpp │ │ ├── ecparam.cpp │ │ ├── enc.cpp │ │ ├── engine.cpp │ │ ├── errstr.cpp │ │ ├── gendh.cpp │ │ ├── gendsa.cpp │ │ ├── genpkey.cpp │ │ ├── genrsa.cpp │ │ ├── install.com │ │ ├── makeapps.com │ │ ├── nseq.cpp │ │ ├── ocsp.cpp │ │ ├── oid.cnf │ │ ├── openssl-vms.cnf │ │ ├── openssl.cnf │ │ ├── openssl.cpp │ │ ├── passwd.cpp │ │ ├── pca-cert.srl │ │ ├── pca-key.pem │ │ ├── pca-req.pem │ │ ├── pkcs12.cpp │ │ ├── pkcs7.cpp │ │ ├── pkcs8.cpp │ │ ├── pkey.cpp │ │ ├── pkeyparam.cpp │ │ ├── pkeyutl.cpp │ │ ├── prime.cpp │ │ ├── privkey.pem │ │ ├── progs.h │ │ ├── progs.pl │ │ ├── rand.cpp │ │ ├── req.cpp │ │ ├── req.pem │ │ ├── rsa.cpp │ │ ├── rsa8192.pem │ │ ├── rsautl.cpp │ │ ├── s1024key.pem │ │ ├── s1024req.pem │ │ ├── s512-key.pem │ │ ├── s512-req.pem │ │ ├── s_apps.h │ │ ├── s_cb.cpp │ │ ├── s_client.cpp │ │ ├── s_server.cpp │ │ ├── s_socket.cpp │ │ ├── s_time.cpp │ │ ├── server.pem │ │ ├── server.srl │ │ ├── server2.pem │ │ ├── sess_id.cpp │ │ ├── set │ │ │ ├── set-g-ca.pem │ │ │ ├── set-m-ca.pem │ │ │ ├── set_b_ca.pem │ │ │ ├── set_c_ca.pem │ │ │ ├── set_d_ct.pem │ │ │ └── set_root.pem │ │ ├── smime.cpp │ │ ├── speed.cpp │ │ ├── spkac.cpp │ │ ├── testCA.pem │ │ ├── testdsa.h │ │ ├── testrsa.h │ │ ├── timeouts.h │ │ ├── ts.cpp │ │ ├── tsget │ │ ├── verify.cpp │ │ ├── version.cpp │ │ ├── winrand.cpp │ │ └── x509.cpp │ │ ├── bugs │ │ ├── MS │ │ ├── SSLv3 │ │ ├── alpha.c │ │ ├── dggccbug.c │ │ ├── sgiccbug.c │ │ ├── sslref.dif │ │ ├── stream.c │ │ └── ultrixcc.c │ │ ├── certs │ │ ├── README.RootCerts │ │ ├── demo │ │ │ ├── ca-cert.pem │ │ │ ├── dsa-ca.pem │ │ │ ├── dsa-pca.pem │ │ │ └── pca-cert.pem │ │ └── expired │ │ │ └── ICE.crl │ │ ├── config │ │ ├── crypto │ │ ├── LPdir_nyi.cpp │ │ ├── LPdir_unix.cpp │ │ ├── LPdir_vms.cpp │ │ ├── LPdir_win.cpp │ │ ├── LPdir_win32.cpp │ │ ├── LPdir_wince.cpp │ │ ├── Makefile │ │ ├── aes │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── aes.h │ │ │ ├── aes_cbc.cpp │ │ │ ├── aes_cfb.cpp │ │ │ ├── aes_core.cpp │ │ │ ├── aes_ctr.cpp │ │ │ ├── aes_ecb.cpp │ │ │ ├── aes_ige.cpp │ │ │ ├── aes_locl.h │ │ │ ├── aes_misc.cpp │ │ │ ├── aes_ofb.cpp │ │ │ ├── aes_wrap.cpp │ │ │ ├── aes_x86core.cpp │ │ │ ├── asm │ │ │ │ ├── aes-586.pl │ │ │ │ ├── aes-armv4.pl │ │ │ │ ├── aes-ia64.S │ │ │ │ ├── aes-ppc.pl │ │ │ │ ├── aes-s390x.pl │ │ │ │ ├── aes-sparcv9.pl │ │ │ │ └── aes-x86_64.pl │ │ │ └── dotNetMF.proj │ │ ├── asn1 │ │ │ ├── Makefile │ │ │ ├── a_bitstr.cpp │ │ │ ├── a_bool.cpp │ │ │ ├── a_bytes.cpp │ │ │ ├── a_d2i_fp.cpp │ │ │ ├── a_digest.cpp │ │ │ ├── a_dup.cpp │ │ │ ├── a_enum.cpp │ │ │ ├── a_gentm.cpp │ │ │ ├── a_i2d_fp.cpp │ │ │ ├── a_int.cpp │ │ │ ├── a_mbstr.cpp │ │ │ ├── a_object.cpp │ │ │ ├── a_octet.cpp │ │ │ ├── a_print.cpp │ │ │ ├── a_set.cpp │ │ │ ├── a_sign.cpp │ │ │ ├── a_strex.cpp │ │ │ ├── a_strnid.cpp │ │ │ ├── a_time.cpp │ │ │ ├── a_type.cpp │ │ │ ├── a_utctm.cpp │ │ │ ├── a_utf8.cpp │ │ │ ├── a_verify.cpp │ │ │ ├── ameth_lib.cpp │ │ │ ├── asn1.h │ │ │ ├── asn1_err.cpp │ │ │ ├── asn1_gen.cpp │ │ │ ├── asn1_lib.cpp │ │ │ ├── asn1_locl.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1_par.cpp │ │ │ ├── asn1t.h │ │ │ ├── asn_mime.cpp │ │ │ ├── asn_moid.cpp │ │ │ ├── asn_pack.cpp │ │ │ ├── bio_asn1.cpp │ │ │ ├── bio_ndef.cpp │ │ │ ├── charmap.h │ │ │ ├── charmap.pl │ │ │ ├── d2i_pr.cpp │ │ │ ├── d2i_pu.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF2.proj │ │ │ ├── evp_asn1.cpp │ │ │ ├── f_enum.cpp │ │ │ ├── f_int.cpp │ │ │ ├── f_string.cpp │ │ │ ├── i2d_pr.cpp │ │ │ ├── i2d_pu.cpp │ │ │ ├── n_pkey.cpp │ │ │ ├── nsseq.cpp │ │ │ ├── p5_pbe.cpp │ │ │ ├── p5_pbev2.cpp │ │ │ ├── p8_pkey.cpp │ │ │ ├── t_bitst.cpp │ │ │ ├── t_crl.cpp │ │ │ ├── t_pkey.cpp │ │ │ ├── t_req.cpp │ │ │ ├── t_spki.cpp │ │ │ ├── t_x509.cpp │ │ │ ├── t_x509a.cpp │ │ │ ├── tasn_dec.cpp │ │ │ ├── tasn_enc.cpp │ │ │ ├── tasn_fre.cpp │ │ │ ├── tasn_new.cpp │ │ │ ├── tasn_prn.cpp │ │ │ ├── tasn_typ.cpp │ │ │ ├── tasn_utl.cpp │ │ │ ├── x_algor.cpp │ │ │ ├── x_attrib.cpp │ │ │ ├── x_bignum.cpp │ │ │ ├── x_crl.cpp │ │ │ ├── x_exten.cpp │ │ │ ├── x_info.cpp │ │ │ ├── x_long.cpp │ │ │ ├── x_name.cpp │ │ │ ├── x_nx509.cpp │ │ │ ├── x_pkey.cpp │ │ │ ├── x_pubkey.cpp │ │ │ ├── x_req.cpp │ │ │ ├── x_sig.cpp │ │ │ ├── x_spki.cpp │ │ │ ├── x_val.cpp │ │ │ ├── x_x509.cpp │ │ │ └── x_x509a.cpp │ │ ├── bf │ │ │ ├── COPYRIGHT │ │ │ ├── INSTALL │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ ├── bf-586.pl │ │ │ │ ├── bf-686.pl │ │ │ │ └── readme │ │ │ ├── bf_cbc.cpp │ │ │ ├── bf_cfb64.cpp │ │ │ ├── bf_ecb.cpp │ │ │ ├── bf_enc.cpp │ │ │ ├── bf_locl.h │ │ │ ├── bf_ofb64.cpp │ │ │ ├── bf_opts.cpp │ │ │ ├── bf_pi.h │ │ │ ├── bf_skey.cpp │ │ │ ├── bfs.cpp │ │ │ ├── bfspeed.cpp │ │ │ ├── bftest.cpp │ │ │ ├── blowfish.h │ │ │ ├── dotNetMF.proj │ │ │ └── dotNetMF_test.proj │ │ ├── bio │ │ │ ├── Makefile │ │ │ ├── b_dump.cpp │ │ │ ├── b_print.cpp │ │ │ ├── b_sock.cpp │ │ │ ├── bf_buff.cpp │ │ │ ├── bf_lbuf.cpp │ │ │ ├── bf_nbio.cpp │ │ │ ├── bf_null.cpp │ │ │ ├── bio.h │ │ │ ├── bio_cb.cpp │ │ │ ├── bio_err.cpp │ │ │ ├── bio_lcl.h │ │ │ ├── bio_lib.cpp │ │ │ ├── bss_acpt.cpp │ │ │ ├── bss_bio.cpp │ │ │ ├── bss_conn.cpp │ │ │ ├── bss_dgram.cpp │ │ │ ├── bss_fd.cpp │ │ │ ├── bss_file.cpp │ │ │ ├── bss_log.cpp │ │ │ ├── bss_mem.cpp │ │ │ ├── bss_null.cpp │ │ │ ├── bss_rtcp.cpp │ │ │ ├── bss_sock.cpp │ │ │ └── dotNetMF.proj │ │ ├── bn │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── alpha-mont.pl │ │ │ │ ├── armv4-mont.pl │ │ │ │ ├── bn-586.pl │ │ │ │ ├── co-586.pl │ │ │ │ ├── ia64.S │ │ │ │ ├── mips3-mont.pl │ │ │ │ ├── mips3.s │ │ │ │ ├── pa-risc2.s │ │ │ │ ├── pa-risc2W.s │ │ │ │ ├── ppc-mont.pl │ │ │ │ ├── ppc.pl │ │ │ │ ├── ppc64-mont.pl │ │ │ │ ├── s390x-mont.pl │ │ │ │ ├── s390x.S │ │ │ │ ├── sparcv8.S │ │ │ │ ├── sparcv8plus.S │ │ │ │ ├── sparcv9-mont.pl │ │ │ │ ├── sparcv9a-mont.pl │ │ │ │ ├── via-mont.pl │ │ │ │ ├── vms.mar │ │ │ │ ├── x86-mont.pl │ │ │ │ ├── x86.pl │ │ │ │ ├── x86 │ │ │ │ │ ├── add.pl │ │ │ │ │ ├── comba.pl │ │ │ │ │ ├── div.pl │ │ │ │ │ ├── f │ │ │ │ │ ├── mul.pl │ │ │ │ │ ├── mul_add.pl │ │ │ │ │ ├── sqr.pl │ │ │ │ │ └── sub.pl │ │ │ │ ├── x86_64-gcc.c │ │ │ │ └── x86_64-mont.pl │ │ │ ├── bn.h │ │ │ ├── bn.mul │ │ │ ├── bn_add.cpp │ │ │ ├── bn_asm.cpp │ │ │ ├── bn_blind.cpp │ │ │ ├── bn_const.cpp │ │ │ ├── bn_ctx.cpp │ │ │ ├── bn_depr.cpp │ │ │ ├── bn_div.cpp │ │ │ ├── bn_err.cpp │ │ │ ├── bn_exp.cpp │ │ │ ├── bn_exp2.cpp │ │ │ ├── bn_gcd.cpp │ │ │ ├── bn_gf2m.cpp │ │ │ ├── bn_kron.cpp │ │ │ ├── bn_lcl.h │ │ │ ├── bn_lib.cpp │ │ │ ├── bn_mod.cpp │ │ │ ├── bn_mont.cpp │ │ │ ├── bn_mpi.cpp │ │ │ ├── bn_mul.cpp │ │ │ ├── bn_nist.cpp │ │ │ ├── bn_prime.cpp │ │ │ ├── bn_prime.h │ │ │ ├── bn_prime.pl │ │ │ ├── bn_print.cpp │ │ │ ├── bn_rand.cpp │ │ │ ├── bn_recp.cpp │ │ │ ├── bn_shift.cpp │ │ │ ├── bn_sqr.cpp │ │ │ ├── bn_sqrt.cpp │ │ │ ├── bn_word.cpp │ │ │ ├── bnspeed.cpp │ │ │ ├── bntest.cpp │ │ │ ├── divtest.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_testBN.proj │ │ │ ├── dotNetMF_testEXP.proj │ │ │ ├── exp.cpp │ │ │ ├── expspeed.cpp │ │ │ ├── exptest.cpp │ │ │ ├── todo │ │ │ └── vms-helper.cpp │ │ ├── buffer │ │ │ ├── Makefile │ │ │ ├── buf_err.cpp │ │ │ ├── buffer.cpp │ │ │ ├── buffer.h │ │ │ └── dotNetMF.proj │ │ ├── buildinf.h │ │ ├── camellia │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── cmll-x86.pl │ │ │ │ └── cmll-x86_64.pl │ │ │ ├── camellia.cpp │ │ │ ├── camellia.h │ │ │ ├── cmll_cbc.cpp │ │ │ ├── cmll_cfb.cpp │ │ │ ├── cmll_ctr.cpp │ │ │ ├── cmll_ecb.cpp │ │ │ ├── cmll_locl.h │ │ │ ├── cmll_misc.cpp │ │ │ ├── cmll_ofb.cpp │ │ │ └── dotNetMF.proj │ │ ├── cast │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── cast-586.pl │ │ │ │ └── readme │ │ │ ├── c_cfb64.cpp │ │ │ ├── c_ecb.cpp │ │ │ ├── c_enc.cpp │ │ │ ├── c_ofb64.cpp │ │ │ ├── c_skey.cpp │ │ │ ├── cast.h │ │ │ ├── cast_lcl.h │ │ │ ├── cast_s.h │ │ │ ├── cast_spd.cpp │ │ │ ├── castopts.cpp │ │ │ ├── casts.cpp │ │ │ ├── casttest.cpp │ │ │ ├── dotNetMF.proj │ │ │ └── dotNetMF_test.proj │ │ ├── cms │ │ │ ├── Makefile │ │ │ ├── cms.h │ │ │ ├── cms_asn1.cpp │ │ │ ├── cms_att.cpp │ │ │ ├── cms_cd.cpp │ │ │ ├── cms_dd.cpp │ │ │ ├── cms_enc.cpp │ │ │ ├── cms_env.cpp │ │ │ ├── cms_err.cpp │ │ │ ├── cms_ess.cpp │ │ │ ├── cms_io.cpp │ │ │ ├── cms_lcl.h │ │ │ ├── cms_lib.cpp │ │ │ ├── cms_sd.cpp │ │ │ ├── cms_smime.cpp │ │ │ └── dotNetMF.proj │ │ ├── comp │ │ │ ├── Makefile │ │ │ ├── c_rle.cpp │ │ │ ├── c_zlib.cpp │ │ │ ├── comp.h │ │ │ ├── comp_err.cpp │ │ │ ├── comp_lib.cpp │ │ │ └── dotNetMF.proj │ │ ├── conf │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cnf_save.cpp │ │ │ ├── conf.h │ │ │ ├── conf_api.cpp │ │ │ ├── conf_api.h │ │ │ ├── conf_def.cpp │ │ │ ├── conf_def.h │ │ │ ├── conf_err.cpp │ │ │ ├── conf_lib.cpp │ │ │ ├── conf_mall.cpp │ │ │ ├── conf_mod.cpp │ │ │ ├── conf_sap.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── keysets.pl │ │ │ ├── ssleay.cnf │ │ │ └── test.cpp │ │ ├── cpt_err.cpp │ │ ├── cryptlib.cpp │ │ ├── cryptlib.h │ │ ├── crypto-lib.com │ │ ├── crypto.h │ │ ├── cversion.cpp │ │ ├── des │ │ │ ├── COPYRIGHT │ │ │ ├── DES.pm │ │ │ ├── DES.xs │ │ │ ├── FILES0 │ │ │ ├── INSTALL │ │ │ ├── Imakefile │ │ │ ├── KERBEROS │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ ├── crypt586.pl │ │ │ │ ├── des-586.pl │ │ │ │ ├── des_enc.m4 │ │ │ │ ├── desboth.pl │ │ │ │ └── readme │ │ │ ├── cbc3_enc.cpp │ │ │ ├── cbc_cksm.cpp │ │ │ ├── cbc_enc.cpp │ │ │ ├── cfb64ede.cpp │ │ │ ├── cfb64enc.cpp │ │ │ ├── cfb_enc.cpp │ │ │ ├── des-lib.com │ │ │ ├── des.cpp │ │ │ ├── des.h │ │ │ ├── des.pod │ │ │ ├── des3s.cpp │ │ │ ├── des_enc.cpp │ │ │ ├── des_locl.h │ │ │ ├── des_old.cpp │ │ │ ├── des_old.h │ │ │ ├── des_old2.cpp │ │ │ ├── des_opts.cpp │ │ │ ├── des_ver.h │ │ │ ├── dess.cpp │ │ │ ├── destest.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── ecb3_enc.cpp │ │ │ ├── ecb_enc.cpp │ │ │ ├── ede_cbcm_enc.cpp │ │ │ ├── enc_read.cpp │ │ │ ├── enc_writ.cpp │ │ │ ├── fcrypt.cpp │ │ │ ├── fcrypt_b.cpp │ │ │ ├── makefile.bc │ │ │ ├── ncbc_enc.cpp │ │ │ ├── ofb64ede.cpp │ │ │ ├── ofb64enc.cpp │ │ │ ├── ofb_enc.cpp │ │ │ ├── options.txt │ │ │ ├── pcbc_enc.cpp │ │ │ ├── qud_cksm.cpp │ │ │ ├── rand_key.cpp │ │ │ ├── read2pwd.cpp │ │ │ ├── read_pwd.cpp │ │ │ ├── rpc_des.h │ │ │ ├── rpc_enc.cpp │ │ │ ├── rpw.cpp │ │ │ ├── set_key.cpp │ │ │ ├── speed.cpp │ │ │ ├── spr.h │ │ │ ├── str2key.cpp │ │ │ ├── t │ │ │ │ └── test │ │ │ ├── times │ │ │ │ ├── 486-50.sol │ │ │ │ ├── 586-100.lnx │ │ │ │ ├── 686-200.fre │ │ │ │ ├── aix.cc │ │ │ │ ├── alpha.cc │ │ │ │ ├── hpux.cc │ │ │ │ ├── sparc.gcc │ │ │ │ └── usparc.cc │ │ │ ├── typemap │ │ │ └── xcbc_enc.cpp │ │ ├── dh │ │ │ ├── Makefile │ │ │ ├── dh.h │ │ │ ├── dh1024.pem │ │ │ ├── dh192.pem │ │ │ ├── dh2048.pem │ │ │ ├── dh4096.pem │ │ │ ├── dh512.pem │ │ │ ├── dh_ameth.cpp │ │ │ ├── dh_asn1.cpp │ │ │ ├── dh_check.cpp │ │ │ ├── dh_depr.cpp │ │ │ ├── dh_err.cpp │ │ │ ├── dh_gen.cpp │ │ │ ├── dh_key.cpp │ │ │ ├── dh_lib.cpp │ │ │ ├── dh_pmeth.cpp │ │ │ ├── dh_prn.cpp │ │ │ ├── dhtest.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── example │ │ │ ├── generate │ │ │ ├── p1024.cpp │ │ │ ├── p192.cpp │ │ │ └── p512.cpp │ │ ├── dotNetMF.proj │ │ ├── dsa │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── dsa.h │ │ │ ├── dsa_ameth.cpp │ │ │ ├── dsa_asn1.cpp │ │ │ ├── dsa_depr.cpp │ │ │ ├── dsa_err.cpp │ │ │ ├── dsa_gen.cpp │ │ │ ├── dsa_key.cpp │ │ │ ├── dsa_lib.cpp │ │ │ ├── dsa_locl.h │ │ │ ├── dsa_ossl.cpp │ │ │ ├── dsa_pmeth.cpp │ │ │ ├── dsa_prn.cpp │ │ │ ├── dsa_sign.cpp │ │ │ ├── dsa_vrf.cpp │ │ │ ├── dsagen.cpp │ │ │ ├── dsatest.cpp │ │ │ └── fips186a.txt │ │ ├── dso │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── dotNetMF.proj │ │ │ ├── dso.h │ │ │ ├── dso_beos.cpp │ │ │ ├── dso_dl.cpp │ │ │ ├── dso_dlfcn.cpp │ │ │ ├── dso_err.cpp │ │ │ ├── dso_lib.cpp │ │ │ ├── dso_null.cpp │ │ │ ├── dso_openssl.cpp │ │ │ ├── dso_vms.cpp │ │ │ └── dso_win32.cpp │ │ ├── ebcdic.cpp │ │ ├── ebcdic.h │ │ ├── ec │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── ec.h │ │ │ ├── ec2_mult.cpp │ │ │ ├── ec2_smpl.cpp │ │ │ ├── ec_ameth.cpp │ │ │ ├── ec_asn1.cpp │ │ │ ├── ec_check.cpp │ │ │ ├── ec_curve.cpp │ │ │ ├── ec_cvt.cpp │ │ │ ├── ec_err.cpp │ │ │ ├── ec_key.cpp │ │ │ ├── ec_lcl.h │ │ │ ├── ec_lib.cpp │ │ │ ├── ec_mult.cpp │ │ │ ├── ec_pmeth.cpp │ │ │ ├── ec_print.cpp │ │ │ ├── eck_prn.cpp │ │ │ ├── ecp_mont.cpp │ │ │ ├── ecp_nist.cpp │ │ │ ├── ecp_smpl.cpp │ │ │ └── ectest.cpp │ │ ├── ecdh │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── ecdh.h │ │ │ ├── ecdhtest.cpp │ │ │ ├── ech_err.cpp │ │ │ ├── ech_key.cpp │ │ │ ├── ech_lib.cpp │ │ │ ├── ech_locl.h │ │ │ └── ech_ossl.cpp │ │ ├── ecdsa │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── ecdsa.h │ │ │ ├── ecdsatest.cpp │ │ │ ├── ecs_asn1.cpp │ │ │ ├── ecs_err.cpp │ │ │ ├── ecs_lib.cpp │ │ │ ├── ecs_locl.h │ │ │ ├── ecs_ossl.cpp │ │ │ ├── ecs_sign.cpp │ │ │ └── ecs_vrf.cpp │ │ ├── engine │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── eng_all.cpp │ │ │ ├── eng_cnf.cpp │ │ │ ├── eng_cryptodev.cpp │ │ │ ├── eng_ctrl.cpp │ │ │ ├── eng_dyn.cpp │ │ │ ├── eng_err.cpp │ │ │ ├── eng_fat.cpp │ │ │ ├── eng_init.cpp │ │ │ ├── eng_int.h │ │ │ ├── eng_lib.cpp │ │ │ ├── eng_list.cpp │ │ │ ├── eng_openssl.cpp │ │ │ ├── eng_pkey.cpp │ │ │ ├── eng_table.cpp │ │ │ ├── engine.h │ │ │ ├── enginetest.cpp │ │ │ ├── tb_asnmth.cpp │ │ │ ├── tb_cipher.cpp │ │ │ ├── tb_dh.cpp │ │ │ ├── tb_digest.cpp │ │ │ ├── tb_dsa.cpp │ │ │ ├── tb_ecdh.cpp │ │ │ ├── tb_ecdsa.cpp │ │ │ ├── tb_pkmeth.cpp │ │ │ ├── tb_rand.cpp │ │ │ ├── tb_rsa.cpp │ │ │ └── tb_store.cpp │ │ ├── err │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── err.h │ │ │ ├── errSSL.cpp │ │ │ ├── err_all.cpp │ │ │ ├── err_prn.cpp │ │ │ └── openssl.ec │ │ ├── evp │ │ │ ├── Makefile │ │ │ ├── bio_b64.cpp │ │ │ ├── bio_enc.cpp │ │ │ ├── bio_md.cpp │ │ │ ├── bio_ok.cpp │ │ │ ├── c_all.cpp │ │ │ ├── c_allc.cpp │ │ │ ├── c_alld.cpp │ │ │ ├── digest.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── e_aes.cpp │ │ │ ├── e_bf.cpp │ │ │ ├── e_camellia.cpp │ │ │ ├── e_cast.cpp │ │ │ ├── e_des.cpp │ │ │ ├── e_des3.cpp │ │ │ ├── e_dsa.cpp │ │ │ ├── e_idea.cpp │ │ │ ├── e_null.cpp │ │ │ ├── e_old.cpp │ │ │ ├── e_rc2.cpp │ │ │ ├── e_rc4.cpp │ │ │ ├── e_rc5.cpp │ │ │ ├── e_seed.cpp │ │ │ ├── e_xcbc_d.cpp │ │ │ ├── encode.cpp │ │ │ ├── evp.h │ │ │ ├── evp_acnf.cpp │ │ │ ├── evp_enc.cpp │ │ │ ├── evp_err.cpp │ │ │ ├── evp_key.cpp │ │ │ ├── evp_lib.cpp │ │ │ ├── evp_locl.h │ │ │ ├── evp_pbe.cpp │ │ │ ├── evp_pkey.cpp │ │ │ ├── evp_test.cpp │ │ │ ├── evptests.txt │ │ │ ├── m_dss.cpp │ │ │ ├── m_dss1.cpp │ │ │ ├── m_ecdsa.cpp │ │ │ ├── m_md2.cpp │ │ │ ├── m_md4.cpp │ │ │ ├── m_md5.cpp │ │ │ ├── m_mdc2.cpp │ │ │ ├── m_null.cpp │ │ │ ├── m_ripemd.cpp │ │ │ ├── m_sha.cpp │ │ │ ├── m_sha1.cpp │ │ │ ├── m_sigver.cpp │ │ │ ├── m_wp.cpp │ │ │ ├── names.cpp │ │ │ ├── openbsd_hw.cpp │ │ │ ├── p5_crpt.cpp │ │ │ ├── p5_crpt2.cpp │ │ │ ├── p_dec.cpp │ │ │ ├── p_enc.cpp │ │ │ ├── p_lib.cpp │ │ │ ├── p_open.cpp │ │ │ ├── p_seal.cpp │ │ │ ├── p_sign.cpp │ │ │ ├── p_verify.cpp │ │ │ ├── pmeth_fn.cpp │ │ │ ├── pmeth_gn.cpp │ │ │ └── pmeth_lib.cpp │ │ ├── ex_data.cpp │ │ ├── hmac │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── hm_ameth.cpp │ │ │ ├── hm_pmeth.cpp │ │ │ ├── hmac.cpp │ │ │ ├── hmac.h │ │ │ └── hmactest.cpp │ │ ├── ia64cpuid.S │ │ ├── idea │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── i_cbc.cpp │ │ │ ├── i_cfb64.cpp │ │ │ ├── i_ecb.cpp │ │ │ ├── i_ofb64.cpp │ │ │ ├── i_skey.cpp │ │ │ ├── idea.h │ │ │ ├── idea_lcl.h │ │ │ ├── idea_spd.cpp │ │ │ ├── ideatest.cpp │ │ │ └── version │ │ ├── install.com │ │ ├── jpake │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── jpake.cpp │ │ │ ├── jpake.h │ │ │ ├── jpake_err.cpp │ │ │ └── jpaketest.cpp │ │ ├── krb5 │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── krb5_asn.cpp │ │ │ └── krb5_asn.h │ │ ├── lhash │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── lh_stats.cpp │ │ │ ├── lh_test.cpp │ │ │ ├── lhash.cpp │ │ │ ├── lhash.h │ │ │ └── num.pl │ │ ├── md2 │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── md2.cpp │ │ │ ├── md2.h │ │ │ ├── md2_dgst.cpp │ │ │ ├── md2_one.cpp │ │ │ └── md2test.cpp │ │ ├── md32_common.h │ │ ├── md4 │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── md4.cpp │ │ │ ├── md4.h │ │ │ ├── md4_dgst.cpp │ │ │ ├── md4_locl.h │ │ │ ├── md4_one.cpp │ │ │ ├── md4s.cpp │ │ │ └── md4test.cpp │ │ ├── md5 │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── md5-586.pl │ │ │ │ ├── md5-ia64.S │ │ │ │ └── md5-x86_64.pl │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── md5.cpp │ │ │ ├── md5.h │ │ │ ├── md5_dgst.cpp │ │ │ ├── md5_locl.h │ │ │ ├── md5_one.cpp │ │ │ ├── md5s.cpp │ │ │ └── md5test.cpp │ │ ├── mdc2 │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── mdc2.h │ │ │ ├── mdc2_one.cpp │ │ │ ├── mdc2dgst.cpp │ │ │ └── mdc2test.cpp │ │ ├── memSSL.cpp │ │ ├── mem_clr.cpp │ │ ├── mem_dbg.cpp │ │ ├── modes │ │ │ ├── Makefile │ │ │ ├── cbc128.cpp │ │ │ ├── cfb128.cpp │ │ │ ├── ctr128.cpp │ │ │ ├── cts128.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── modes.h │ │ │ └── ofb128.cpp │ │ ├── o_dir.cpp │ │ ├── o_dir.h │ │ ├── o_dir_test.cpp │ │ ├── o_str.cpp │ │ ├── o_str.h │ │ ├── o_time.cpp │ │ ├── o_time.h │ │ ├── objects │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── o_names.cpp │ │ │ ├── obj_dat.cpp │ │ │ ├── obj_dat.h │ │ │ ├── obj_dat.pl │ │ │ ├── obj_err.cpp │ │ │ ├── obj_lib.cpp │ │ │ ├── obj_mac.h │ │ │ ├── obj_mac.num │ │ │ ├── obj_xref.cpp │ │ │ ├── obj_xref.h │ │ │ ├── obj_xref.txt │ │ │ ├── objects.README │ │ │ ├── objects.h │ │ │ ├── objects.pl │ │ │ ├── objects.txt │ │ │ └── objxref.pl │ │ ├── ocsp │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── ocsp.h │ │ │ ├── ocsp_asn.cpp │ │ │ ├── ocsp_cl.cpp │ │ │ ├── ocsp_err.cpp │ │ │ ├── ocsp_ext.cpp │ │ │ ├── ocsp_ht.cpp │ │ │ ├── ocsp_lib.cpp │ │ │ ├── ocsp_prn.cpp │ │ │ ├── ocsp_srv.cpp │ │ │ └── ocsp_vfy.cpp │ │ ├── opensslconf.h │ │ ├── opensslconf.h.in │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── message │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pem_all.cpp │ │ │ ├── pem_err.cpp │ │ │ ├── pem_info.cpp │ │ │ ├── pem_lib.cpp │ │ │ ├── pem_oth.cpp │ │ │ ├── pem_pk8.cpp │ │ │ ├── pem_pkey.cpp │ │ │ ├── pem_seal.cpp │ │ │ ├── pem_sign.cpp │ │ │ ├── pem_x509.cpp │ │ │ ├── pem_xaux.cpp │ │ │ ├── pkcs7.lis │ │ │ └── pvkfmt.cpp │ │ ├── perlasm │ │ │ ├── cbc.pl │ │ │ ├── ppc-xlate.pl │ │ │ ├── readme │ │ │ ├── x86_64-xlate.pl │ │ │ ├── x86asm.pl │ │ │ ├── x86gas.pl │ │ │ ├── x86masm.pl │ │ │ └── x86nasm.pl │ │ ├── pkcs12 │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── p12_add.cpp │ │ │ ├── p12_asn.cpp │ │ │ ├── p12_attr.cpp │ │ │ ├── p12_crpt.cpp │ │ │ ├── p12_crt.cpp │ │ │ ├── p12_decr.cpp │ │ │ ├── p12_init.cpp │ │ │ ├── p12_key.cpp │ │ │ ├── p12_kiss.cpp │ │ │ ├── p12_mutl.cpp │ │ │ ├── p12_npas.cpp │ │ │ ├── p12_p8d.cpp │ │ │ ├── p12_p8e.cpp │ │ │ ├── p12_utl.cpp │ │ │ ├── pk12err.cpp │ │ │ └── pkcs12.h │ │ ├── pkcs7 │ │ │ ├── Makefile │ │ │ ├── bio_ber.cpp │ │ │ ├── bio_pk7.cpp │ │ │ ├── dec.cpp │ │ │ ├── des.pem │ │ │ ├── doc │ │ │ ├── dotNetMF.proj │ │ │ ├── enc.cpp │ │ │ ├── es1.pem │ │ │ ├── example.cpp │ │ │ ├── example.h │ │ │ ├── info.pem │ │ │ ├── infokey.pem │ │ │ ├── p7 │ │ │ │ ├── a1 │ │ │ │ ├── a2 │ │ │ │ ├── cert.p7c │ │ │ │ ├── smime.p7m │ │ │ │ └── smime.p7s │ │ │ ├── pk7_asn1.cpp │ │ │ ├── pk7_attr.cpp │ │ │ ├── pk7_dgst.cpp │ │ │ ├── pk7_doit.cpp │ │ │ ├── pk7_enc.cpp │ │ │ ├── pk7_lib.cpp │ │ │ ├── pk7_mime.cpp │ │ │ ├── pk7_smime.cpp │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7err.cpp │ │ │ ├── server.pem │ │ │ ├── sign.cpp │ │ │ ├── t │ │ │ │ ├── 3des.pem │ │ │ │ ├── 3dess.pem │ │ │ │ ├── c.pem │ │ │ │ ├── ff │ │ │ │ ├── msie-e │ │ │ │ ├── msie-e.pem │ │ │ │ ├── msie-enc-01 │ │ │ │ ├── msie-enc-01.pem │ │ │ │ ├── msie-enc-02 │ │ │ │ ├── msie-enc-02.pem │ │ │ │ ├── msie-s-a-e │ │ │ │ ├── msie-s-a-e.pem │ │ │ │ ├── nav-smime │ │ │ │ ├── s.pem │ │ │ │ └── server.pem │ │ │ └── verify.cpp │ │ ├── ppccpuid.pl │ │ ├── pqueue │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── pq_test.cpp │ │ │ ├── pqueue.cpp │ │ │ └── pqueue.h │ │ ├── rand │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── md_rand.cpp │ │ │ ├── rand.h │ │ │ ├── rand_egd.cpp │ │ │ ├── rand_err.cpp │ │ │ ├── rand_imxs.cpp │ │ │ ├── rand_lcl.h │ │ │ ├── rand_lib.cpp │ │ │ ├── rand_nw.cpp │ │ │ ├── rand_os2.cpp │ │ │ ├── rand_unix.cpp │ │ │ ├── rand_vms.cpp │ │ │ ├── rand_win.cpp │ │ │ ├── randfile.cpp │ │ │ └── randtest.cpp │ │ ├── rc2 │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── rc2.h │ │ │ ├── rc2_cbc.cpp │ │ │ ├── rc2_ecb.cpp │ │ │ ├── rc2_locl.h │ │ │ ├── rc2_skey.cpp │ │ │ ├── rc2cfb64.cpp │ │ │ ├── rc2ofb64.cpp │ │ │ ├── rc2speed.cpp │ │ │ ├── rc2test.cpp │ │ │ ├── tab.cpp │ │ │ └── version │ │ ├── rc4 │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── rc4-586.pl │ │ │ │ ├── rc4-ia64.pl │ │ │ │ ├── rc4-s390x.pl │ │ │ │ └── rc4-x86_64.pl │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── rc4.cpp │ │ │ ├── rc4.h │ │ │ ├── rc4_enc.cpp │ │ │ ├── rc4_locl.h │ │ │ ├── rc4_skey.cpp │ │ │ ├── rc4s.cpp │ │ │ ├── rc4speed.cpp │ │ │ └── rc4test.cpp │ │ ├── rc5 │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ └── rc5-586.pl │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── rc5.h │ │ │ ├── rc5_ecb.cpp │ │ │ ├── rc5_enc.cpp │ │ │ ├── rc5_locl.h │ │ │ ├── rc5_skey.cpp │ │ │ ├── rc5cfb64.cpp │ │ │ ├── rc5ofb64.cpp │ │ │ ├── rc5s.cpp │ │ │ ├── rc5speed.cpp │ │ │ └── rc5test.cpp │ │ ├── ripemd │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── asm │ │ │ │ ├── rips.cpp │ │ │ │ └── rmd-586.pl │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── ripemd.h │ │ │ ├── rmd160.cpp │ │ │ ├── rmd_dgst.cpp │ │ │ ├── rmd_locl.h │ │ │ ├── rmd_one.cpp │ │ │ ├── rmdconst.h │ │ │ └── rmdtest.cpp │ │ ├── rsa │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── rsa.h │ │ │ ├── rsa_ameth.cpp │ │ │ ├── rsa_asn1.cpp │ │ │ ├── rsa_chk.cpp │ │ │ ├── rsa_depr.cpp │ │ │ ├── rsa_eay.cpp │ │ │ ├── rsa_err.cpp │ │ │ ├── rsa_gen.cpp │ │ │ ├── rsa_lib.cpp │ │ │ ├── rsa_locl.h │ │ │ ├── rsa_none.cpp │ │ │ ├── rsa_null.cpp │ │ │ ├── rsa_oaep.cpp │ │ │ ├── rsa_pk1.cpp │ │ │ ├── rsa_pmeth.cpp │ │ │ ├── rsa_prn.cpp │ │ │ ├── rsa_pss.cpp │ │ │ ├── rsa_saos.cpp │ │ │ ├── rsa_sign.cpp │ │ │ ├── rsa_ssl.cpp │ │ │ ├── rsa_test.cpp │ │ │ └── rsa_x931.cpp │ │ ├── s390xcap.cpp │ │ ├── s390xcpuid.S │ │ ├── seed │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── seed.cpp │ │ │ ├── seed.h │ │ │ ├── seed_cbc.cpp │ │ │ ├── seed_cfb.cpp │ │ │ ├── seed_ecb.cpp │ │ │ ├── seed_locl.h │ │ │ └── seed_ofb.cpp │ │ ├── sha │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── sha1-586.pl │ │ │ │ ├── sha1-armv4-large.pl │ │ │ │ ├── sha1-ia64.pl │ │ │ │ ├── sha1-ppc.pl │ │ │ │ ├── sha1-s390x.pl │ │ │ │ ├── sha1-sparcv9.pl │ │ │ │ ├── sha1-sparcv9a.pl │ │ │ │ ├── sha1-thumb.pl │ │ │ │ ├── sha1-x86_64.pl │ │ │ │ ├── sha256-586.pl │ │ │ │ ├── sha256-armv4.pl │ │ │ │ ├── sha512-586.pl │ │ │ │ ├── sha512-armv4.pl │ │ │ │ ├── sha512-ia64.pl │ │ │ │ ├── sha512-ppc.pl │ │ │ │ ├── sha512-s390x.pl │ │ │ │ ├── sha512-sparcv9.pl │ │ │ │ └── sha512-x86_64.pl │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_testSHA.proj │ │ │ ├── dotNetMF_testSHA1.proj │ │ │ ├── dotNetMF_testSHA256.proj │ │ │ ├── dotNetMF_testSHA512.proj │ │ │ ├── sha.cpp │ │ │ ├── sha.h │ │ │ ├── sha1.cpp │ │ │ ├── sha1_one.cpp │ │ │ ├── sha1dgst.cpp │ │ │ ├── sha1test.cpp │ │ │ ├── sha256.cpp │ │ │ ├── sha256t.cpp │ │ │ ├── sha512.cpp │ │ │ ├── sha512t.cpp │ │ │ ├── sha_dgst.cpp │ │ │ ├── sha_locl.h │ │ │ ├── sha_one.cpp │ │ │ └── shatest.cpp │ │ ├── sparccpuid.S │ │ ├── sparcv9cap.cpp │ │ ├── stack │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── safestack.h │ │ │ ├── stack.cpp │ │ │ └── stack.h │ │ ├── store │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── dotNetMF.proj │ │ │ ├── store.h │ │ │ ├── str_err.c │ │ │ ├── str_lib.c │ │ │ ├── str_locl.h │ │ │ ├── str_mem.c │ │ │ └── str_meth.c │ │ ├── symhacks.h │ │ ├── threads │ │ │ ├── README │ │ │ ├── mttest.cpp │ │ │ ├── netware.bat │ │ │ ├── profile.sh │ │ │ ├── ptest.bat │ │ │ ├── pthread.sh │ │ │ ├── pthread2.sh │ │ │ ├── pthreads-vms.com │ │ │ ├── purify.sh │ │ │ ├── solaris.sh │ │ │ ├── th-lock.cpp │ │ │ └── win32.bat │ │ ├── ts │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── ts.h │ │ │ ├── ts_asn1.cpp │ │ │ ├── ts_conf.cpp │ │ │ ├── ts_err.cpp │ │ │ ├── ts_lib.cpp │ │ │ ├── ts_req_print.cpp │ │ │ ├── ts_req_utils.cpp │ │ │ ├── ts_rsp_print.cpp │ │ │ ├── ts_rsp_sign.cpp │ │ │ ├── ts_rsp_utils.cpp │ │ │ ├── ts_rsp_verify.cpp │ │ │ └── ts_verify_ctx.cpp │ │ ├── txt_db │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── txt_db.cpp │ │ │ └── txt_db.h │ │ ├── ui │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── ui.h │ │ │ ├── ui_compat.cpp │ │ │ ├── ui_compat.h │ │ │ ├── ui_err.cpp │ │ │ ├── ui_lib.cpp │ │ │ ├── ui_locl.h │ │ │ ├── ui_openssl.cpp │ │ │ └── ui_util.cpp │ │ ├── uid.cpp │ │ ├── whrlpool │ │ │ ├── Makefile │ │ │ ├── asm │ │ │ │ ├── wp-mmx.pl │ │ │ │ └── wp-x86_64.pl │ │ │ ├── dotNetMF.proj │ │ │ ├── whrlpool.h │ │ │ ├── wp_block.cpp │ │ │ ├── wp_dgst.cpp │ │ │ ├── wp_locl.h │ │ │ └── wp_test.cpp │ │ ├── x509 │ │ │ ├── Makefile │ │ │ ├── by_dir.cpp │ │ │ ├── by_file.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── x509.h │ │ │ ├── x509_att.cpp │ │ │ ├── x509_cmp.cpp │ │ │ ├── x509_d2.cpp │ │ │ ├── x509_def.cpp │ │ │ ├── x509_err.cpp │ │ │ ├── x509_ext.cpp │ │ │ ├── x509_lu.cpp │ │ │ ├── x509_obj.cpp │ │ │ ├── x509_r2x.cpp │ │ │ ├── x509_req.cpp │ │ │ ├── x509_set.cpp │ │ │ ├── x509_trs.cpp │ │ │ ├── x509_txt.cpp │ │ │ ├── x509_v3.cpp │ │ │ ├── x509_vfy.cpp │ │ │ ├── x509_vfy.h │ │ │ ├── x509_vpm.cpp │ │ │ ├── x509cset.cpp │ │ │ ├── x509name.cpp │ │ │ ├── x509rset.cpp │ │ │ ├── x509spki.cpp │ │ │ ├── x509type.cpp │ │ │ └── x_all.cpp │ │ ├── x509v3 │ │ │ ├── Makefile │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_test.proj │ │ │ ├── ext_dat.h │ │ │ ├── pcy_cache.cpp │ │ │ ├── pcy_data.cpp │ │ │ ├── pcy_int.h │ │ │ ├── pcy_lib.cpp │ │ │ ├── pcy_map.cpp │ │ │ ├── pcy_node.cpp │ │ │ ├── pcy_tree.cpp │ │ │ ├── tabtest.cpp │ │ │ ├── v3_addr.cpp │ │ │ ├── v3_akey.cpp │ │ │ ├── v3_akeya.cpp │ │ │ ├── v3_alt.cpp │ │ │ ├── v3_asid.cpp │ │ │ ├── v3_bcons.cpp │ │ │ ├── v3_bitst.cpp │ │ │ ├── v3_conf.cpp │ │ │ ├── v3_cpols.cpp │ │ │ ├── v3_crld.cpp │ │ │ ├── v3_enum.cpp │ │ │ ├── v3_extku.cpp │ │ │ ├── v3_genn.cpp │ │ │ ├── v3_ia5.cpp │ │ │ ├── v3_info.cpp │ │ │ ├── v3_int.cpp │ │ │ ├── v3_lib.cpp │ │ │ ├── v3_ncons.cpp │ │ │ ├── v3_ocsp.cpp │ │ │ ├── v3_pci.cpp │ │ │ ├── v3_pcia.cpp │ │ │ ├── v3_pcons.cpp │ │ │ ├── v3_pku.cpp │ │ │ ├── v3_pmaps.cpp │ │ │ ├── v3_prn.cpp │ │ │ ├── v3_purp.cpp │ │ │ ├── v3_skey.cpp │ │ │ ├── v3_sxnet.cpp │ │ │ ├── v3_utl.cpp │ │ │ ├── v3conf.cpp │ │ │ ├── v3err.cpp │ │ │ ├── v3prin.cpp │ │ │ └── x509v3.h │ │ ├── x86_64cpuid.pl │ │ └── x86cpuid.pl │ │ ├── demos │ │ ├── README │ │ ├── asn1 │ │ │ ├── README.ASN1 │ │ │ └── ocsp.c │ │ ├── b64.c │ │ ├── b64.pl │ │ ├── bio │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── saccept.c │ │ │ ├── sconnect.c │ │ │ └── server.pem │ │ ├── cms │ │ │ ├── cacert.pem │ │ │ ├── cakey.pem │ │ │ ├── cms_comp.c │ │ │ ├── cms_ddec.c │ │ │ ├── cms_dec.c │ │ │ ├── cms_denc.c │ │ │ ├── cms_enc.c │ │ │ ├── cms_sign.c │ │ │ ├── cms_sign2.c │ │ │ ├── cms_uncomp.c │ │ │ ├── cms_ver.c │ │ │ ├── comp.txt │ │ │ ├── encr.txt │ │ │ ├── sign.txt │ │ │ ├── signer.pem │ │ │ └── signer2.pem │ │ ├── easy_tls │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cacerts.pem │ │ │ ├── cert.pem │ │ │ ├── easy-tls.c │ │ │ ├── easy-tls.h │ │ │ ├── test.c │ │ │ └── test.h │ │ ├── eay │ │ │ ├── Makefile │ │ │ ├── base64.c │ │ │ ├── conn.c │ │ │ └── loadrsa.c │ │ ├── engines │ │ │ ├── cluster_labs │ │ │ │ ├── Makefile │ │ │ │ ├── cluster_labs.h │ │ │ │ ├── hw_cluster_labs.c │ │ │ │ ├── hw_cluster_labs.ec │ │ │ │ ├── hw_cluster_labs_err.c │ │ │ │ └── hw_cluster_labs_err.h │ │ │ ├── ibmca │ │ │ │ ├── Makefile │ │ │ │ ├── hw_ibmca.c │ │ │ │ ├── hw_ibmca.ec │ │ │ │ ├── hw_ibmca_err.c │ │ │ │ ├── hw_ibmca_err.h │ │ │ │ └── ica_openssl_api.h │ │ │ ├── rsaref │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── build.com │ │ │ │ ├── rsaref.c │ │ │ │ ├── rsaref.ec │ │ │ │ ├── rsaref_err.c │ │ │ │ └── rsaref_err.h │ │ │ └── zencod │ │ │ │ ├── Makefile │ │ │ │ ├── hw_zencod.c │ │ │ │ ├── hw_zencod.ec │ │ │ │ ├── hw_zencod.h │ │ │ │ ├── hw_zencod_err.c │ │ │ │ └── hw_zencod_err.h │ │ ├── maurice │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cert.pem │ │ │ ├── example1.c │ │ │ ├── example2.c │ │ │ ├── example3.c │ │ │ ├── example4.c │ │ │ ├── loadkeys.c │ │ │ ├── loadkeys.h │ │ │ └── privkey.pem │ │ ├── pkcs12 │ │ │ ├── README │ │ │ ├── pkread.c │ │ │ └── pkwrite.c │ │ ├── prime │ │ │ ├── Makefile │ │ │ └── prime.c │ │ ├── privkey.pem │ │ ├── selfsign.c │ │ ├── sign │ │ │ ├── Makefile │ │ │ ├── cert.pem │ │ │ ├── key.pem │ │ │ ├── sig.txt │ │ │ ├── sign.c │ │ │ └── sign.txt │ │ ├── smime │ │ │ ├── cacert.pem │ │ │ ├── cakey.pem │ │ │ ├── encr.txt │ │ │ ├── sign.txt │ │ │ ├── signer.pem │ │ │ ├── signer2.pem │ │ │ ├── smdec.c │ │ │ ├── smenc.c │ │ │ ├── smsign.c │ │ │ ├── smsign2.c │ │ │ └── smver.c │ │ ├── spkigen.c │ │ ├── ssl │ │ │ ├── cli.cpp │ │ │ ├── dotNetMF_client.proj │ │ │ ├── dotNetMF_server.proj │ │ │ ├── inetdsrv.cpp │ │ │ └── serv.cpp │ │ ├── ssltest-ecc │ │ │ ├── ECC-RSAcertgen.sh │ │ │ ├── ECCcertgen.sh │ │ │ ├── README │ │ │ ├── RSAcertgen.sh │ │ │ └── ssltest.sh │ │ ├── state_machine │ │ │ ├── Makefile │ │ │ └── state_machine.c │ │ ├── tunala │ │ │ ├── A-client.pem │ │ │ ├── A-server.pem │ │ │ ├── CA.pem │ │ │ ├── INSTALL │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── autogunk.sh │ │ │ ├── autoungunk.sh │ │ │ ├── breakage.c │ │ │ ├── buffer.c │ │ │ ├── cb.c │ │ │ ├── configure.in │ │ │ ├── ip.c │ │ │ ├── sm.c │ │ │ ├── test.sh │ │ │ ├── tunala.c │ │ │ └── tunala.h │ │ └── x509 │ │ │ ├── README │ │ │ ├── mkcert.c │ │ │ └── mkreq.c │ │ ├── doc │ │ ├── HOWTO │ │ │ ├── certificates.txt │ │ │ ├── keys.txt │ │ │ └── proxy_certificates.txt │ │ ├── README │ │ ├── apps │ │ │ ├── CA.pl.pod │ │ │ ├── asn1parse.pod │ │ │ ├── ca.pod │ │ │ ├── ciphers.pod │ │ │ ├── cms.pod │ │ │ ├── config.pod │ │ │ ├── crl.pod │ │ │ ├── crl2pkcs7.pod │ │ │ ├── dgst.pod │ │ │ ├── dhparam.pod │ │ │ ├── dsa.pod │ │ │ ├── dsaparam.pod │ │ │ ├── ec.pod │ │ │ ├── ecparam.pod │ │ │ ├── enc.pod │ │ │ ├── errstr.pod │ │ │ ├── gendsa.pod │ │ │ ├── genpkey.pod │ │ │ ├── genrsa.pod │ │ │ ├── nseq.pod │ │ │ ├── ocsp.pod │ │ │ ├── openssl.pod │ │ │ ├── passwd.pod │ │ │ ├── pkcs12.pod │ │ │ ├── pkcs7.pod │ │ │ ├── pkcs8.pod │ │ │ ├── pkey.pod │ │ │ ├── pkeyparam.pod │ │ │ ├── pkeyutl.pod │ │ │ ├── rand.pod │ │ │ ├── req.pod │ │ │ ├── rsa.pod │ │ │ ├── rsautl.pod │ │ │ ├── s_client.pod │ │ │ ├── s_server.pod │ │ │ ├── s_time.pod │ │ │ ├── sess_id.pod │ │ │ ├── smime.pod │ │ │ ├── speed.pod │ │ │ ├── spkac.pod │ │ │ ├── ts.pod │ │ │ ├── tsget.pod │ │ │ ├── verify.pod │ │ │ ├── version.pod │ │ │ ├── x509.pod │ │ │ └── x509v3_config.pod │ │ ├── c-indentation.el │ │ ├── crypto │ │ │ ├── ASN1_OBJECT_new.pod │ │ │ ├── ASN1_STRING_length.pod │ │ │ ├── ASN1_STRING_new.pod │ │ │ ├── ASN1_STRING_print_ex.pod │ │ │ ├── ASN1_generate_nconf.pod │ │ │ ├── BIO_ctrl.pod │ │ │ ├── BIO_f_base64.pod │ │ │ ├── BIO_f_buffer.pod │ │ │ ├── BIO_f_cipher.pod │ │ │ ├── BIO_f_md.pod │ │ │ ├── BIO_f_null.pod │ │ │ ├── BIO_f_ssl.pod │ │ │ ├── BIO_find_type.pod │ │ │ ├── BIO_new.pod │ │ │ ├── BIO_new_CMS.pod │ │ │ ├── BIO_push.pod │ │ │ ├── BIO_read.pod │ │ │ ├── BIO_s_accept.pod │ │ │ ├── BIO_s_bio.pod │ │ │ ├── BIO_s_connect.pod │ │ │ ├── BIO_s_fd.pod │ │ │ ├── BIO_s_file.pod │ │ │ ├── BIO_s_mem.pod │ │ │ ├── BIO_s_null.pod │ │ │ ├── BIO_s_socket.pod │ │ │ ├── BIO_set_callback.pod │ │ │ ├── BIO_should_retry.pod │ │ │ ├── BN_BLINDING_new.pod │ │ │ ├── BN_CTX_new.pod │ │ │ ├── BN_CTX_start.pod │ │ │ ├── BN_add.pod │ │ │ ├── BN_add_word.pod │ │ │ ├── BN_bn2bin.pod │ │ │ ├── BN_cmp.pod │ │ │ ├── BN_copy.pod │ │ │ ├── BN_generate_prime.pod │ │ │ ├── BN_mod_inverse.pod │ │ │ ├── BN_mod_mul_montgomery.pod │ │ │ ├── BN_mod_mul_reciprocal.pod │ │ │ ├── BN_new.pod │ │ │ ├── BN_num_bytes.pod │ │ │ ├── BN_rand.pod │ │ │ ├── BN_set_bit.pod │ │ │ ├── BN_swap.pod │ │ │ ├── BN_zero.pod │ │ │ ├── CMS_add0_cert.pod │ │ │ ├── CMS_add1_recipient_cert.pod │ │ │ ├── CMS_compress.pod │ │ │ ├── CMS_decrypt.pod │ │ │ ├── CMS_encrypt.pod │ │ │ ├── CMS_final.pod │ │ │ ├── CMS_get0_RecipientInfos.pod │ │ │ ├── CMS_get0_SignerInfos.pod │ │ │ ├── CMS_get0_type.pod │ │ │ ├── CMS_get1_ReceiptRequest.pod │ │ │ ├── CMS_sign.pod │ │ │ ├── CMS_sign_add1_signer.pod │ │ │ ├── CMS_sign_receipt.pod │ │ │ ├── CMS_uncompress.pod │ │ │ ├── CMS_verify.pod │ │ │ ├── CMS_verify_receipt.pod │ │ │ ├── CONF_modules_free.pod │ │ │ ├── CONF_modules_load_file.pod │ │ │ ├── CRYPTO_set_ex_data.pod │ │ │ ├── DH_generate_key.pod │ │ │ ├── DH_generate_parameters.pod │ │ │ ├── DH_get_ex_new_index.pod │ │ │ ├── DH_new.pod │ │ │ ├── DH_set_method.pod │ │ │ ├── DH_size.pod │ │ │ ├── DSA_SIG_new.pod │ │ │ ├── DSA_do_sign.pod │ │ │ ├── DSA_dup_DH.pod │ │ │ ├── DSA_generate_key.pod │ │ │ ├── DSA_generate_parameters.pod │ │ │ ├── DSA_get_ex_new_index.pod │ │ │ ├── DSA_new.pod │ │ │ ├── DSA_set_method.pod │ │ │ ├── DSA_sign.pod │ │ │ ├── DSA_size.pod │ │ │ ├── ERR_GET_LIB.pod │ │ │ ├── ERR_clear_error.pod │ │ │ ├── ERR_error_string.pod │ │ │ ├── ERR_get_error.pod │ │ │ ├── ERR_load_crypto_strings.pod │ │ │ ├── ERR_load_strings.pod │ │ │ ├── ERR_print_errors.pod │ │ │ ├── ERR_put_error.pod │ │ │ ├── ERR_remove_state.pod │ │ │ ├── ERR_set_mark.pod │ │ │ ├── EVP_BytesToKey.pod │ │ │ ├── EVP_DigestInit.pod │ │ │ ├── EVP_DigestSignInit.pod │ │ │ ├── EVP_DigestVerifyInit.pod │ │ │ ├── EVP_EncryptInit.pod │ │ │ ├── EVP_OpenInit.pod │ │ │ ├── EVP_PKEY_CTX_ctrl.pod │ │ │ ├── EVP_PKEY_CTX_new.pod │ │ │ ├── EVP_PKEY_cmp.pod │ │ │ ├── EVP_PKEY_decrypt.pod │ │ │ ├── EVP_PKEY_derive.pod │ │ │ ├── EVP_PKEY_encrypt.pod │ │ │ ├── EVP_PKEY_get_default_digest.pod │ │ │ ├── EVP_PKEY_keygen.pod │ │ │ ├── EVP_PKEY_new.pod │ │ │ ├── EVP_PKEY_print_private.pod │ │ │ ├── EVP_PKEY_set1_RSA.pod │ │ │ ├── EVP_PKEY_sign.pod │ │ │ ├── EVP_PKEY_verify.pod │ │ │ ├── EVP_PKEY_verifyrecover.pod │ │ │ ├── EVP_SealInit.pod │ │ │ ├── EVP_SignInit.pod │ │ │ ├── EVP_VerifyInit.pod │ │ │ ├── OBJ_nid2obj.pod │ │ │ ├── OPENSSL_Applink.pod │ │ │ ├── OPENSSL_VERSION_NUMBER.pod │ │ │ ├── OPENSSL_config.pod │ │ │ ├── OPENSSL_ia32cap.pod │ │ │ ├── OPENSSL_load_builtin_modules.pod │ │ │ ├── OpenSSL_add_all_algorithms.pod │ │ │ ├── PEM_write_bio_CMS_stream.pod │ │ │ ├── PEM_write_bio_PKCS7_stream.pod │ │ │ ├── PKCS12_create.pod │ │ │ ├── PKCS12_parse.pod │ │ │ ├── PKCS7_decrypt.pod │ │ │ ├── PKCS7_encrypt.pod │ │ │ ├── PKCS7_sign.pod │ │ │ ├── PKCS7_sign_add_signer.pod │ │ │ ├── PKCS7_verify.pod │ │ │ ├── RAND_add.pod │ │ │ ├── RAND_bytes.pod │ │ │ ├── RAND_cleanup.pod │ │ │ ├── RAND_egd.pod │ │ │ ├── RAND_load_file.pod │ │ │ ├── RAND_set_rand_method.pod │ │ │ ├── RSA_blinding_on.pod │ │ │ ├── RSA_check_key.pod │ │ │ ├── RSA_generate_key.pod │ │ │ ├── RSA_get_ex_new_index.pod │ │ │ ├── RSA_new.pod │ │ │ ├── RSA_padding_add_PKCS1_type_1.pod │ │ │ ├── RSA_print.pod │ │ │ ├── RSA_private_encrypt.pod │ │ │ ├── RSA_public_encrypt.pod │ │ │ ├── RSA_set_method.pod │ │ │ ├── RSA_sign.pod │ │ │ ├── RSA_sign_ASN1_OCTET_STRING.pod │ │ │ ├── RSA_size.pod │ │ │ ├── SMIME_read_CMS.pod │ │ │ ├── SMIME_read_PKCS7.pod │ │ │ ├── SMIME_write_CMS.pod │ │ │ ├── SMIME_write_PKCS7.pod │ │ │ ├── X509_NAME_ENTRY_get_object.pod │ │ │ ├── X509_NAME_add_entry_by_txt.pod │ │ │ ├── X509_NAME_get_index_by_NID.pod │ │ │ ├── X509_NAME_print_ex.pod │ │ │ ├── X509_STORE_CTX_get_error.pod │ │ │ ├── X509_STORE_CTX_get_ex_new_index.pod │ │ │ ├── X509_STORE_CTX_new.pod │ │ │ ├── X509_STORE_CTX_set_verify_cb.pod │ │ │ ├── X509_STORE_set_verify_cb_func.pod │ │ │ ├── X509_VERIFY_PARAM_set_flags.pod │ │ │ ├── X509_new.pod │ │ │ ├── X509_verify_cert.pod │ │ │ ├── bio.pod │ │ │ ├── blowfish.pod │ │ │ ├── bn.pod │ │ │ ├── bn_internal.pod │ │ │ ├── buffer.pod │ │ │ ├── crypto.pod │ │ │ ├── d2i_ASN1_OBJECT.pod │ │ │ ├── d2i_DHparams.pod │ │ │ ├── d2i_DSAPublicKey.pod │ │ │ ├── d2i_PKCS8PrivateKey.pod │ │ │ ├── d2i_RSAPublicKey.pod │ │ │ ├── d2i_X509.pod │ │ │ ├── d2i_X509_ALGOR.pod │ │ │ ├── d2i_X509_CRL.pod │ │ │ ├── d2i_X509_NAME.pod │ │ │ ├── d2i_X509_REQ.pod │ │ │ ├── d2i_X509_SIG.pod │ │ │ ├── des.pod │ │ │ ├── des_modes.pod │ │ │ ├── dh.pod │ │ │ ├── dsa.pod │ │ │ ├── ecdsa.pod │ │ │ ├── engine.pod │ │ │ ├── err.pod │ │ │ ├── evp.pod │ │ │ ├── hmac.pod │ │ │ ├── i2d_CMS_bio_stream.pod │ │ │ ├── i2d_PKCS7_bio_stream.pod │ │ │ ├── lh_stats.pod │ │ │ ├── lhash.pod │ │ │ ├── md5.pod │ │ │ ├── mdc2.pod │ │ │ ├── pem.pod │ │ │ ├── rand.pod │ │ │ ├── rc4.pod │ │ │ ├── ripemd.pod │ │ │ ├── rsa.pod │ │ │ ├── sha.pod │ │ │ ├── threads.pod │ │ │ ├── ui.pod │ │ │ ├── ui_compat.pod │ │ │ └── x509.pod │ │ ├── fingerprints.txt │ │ ├── openssl-shared.txt │ │ ├── openssl.txt │ │ ├── openssl_button.gif │ │ ├── openssl_button.html │ │ ├── ssl │ │ │ ├── SSL_CIPHER_get_name.pod │ │ │ ├── SSL_COMP_add_compression_method.pod │ │ │ ├── SSL_CTX_add_extra_chain_cert.pod │ │ │ ├── SSL_CTX_add_session.pod │ │ │ ├── SSL_CTX_ctrl.pod │ │ │ ├── SSL_CTX_flush_sessions.pod │ │ │ ├── SSL_CTX_free.pod │ │ │ ├── SSL_CTX_get_ex_new_index.pod │ │ │ ├── SSL_CTX_get_verify_mode.pod │ │ │ ├── SSL_CTX_load_verify_locations.pod │ │ │ ├── SSL_CTX_new.pod │ │ │ ├── SSL_CTX_sess_number.pod │ │ │ ├── SSL_CTX_sess_set_cache_size.pod │ │ │ ├── SSL_CTX_sess_set_get_cb.pod │ │ │ ├── SSL_CTX_sessions.pod │ │ │ ├── SSL_CTX_set_cert_store.pod │ │ │ ├── SSL_CTX_set_cert_verify_callback.pod │ │ │ ├── SSL_CTX_set_cipher_list.pod │ │ │ ├── SSL_CTX_set_client_CA_list.pod │ │ │ ├── SSL_CTX_set_client_cert_cb.pod │ │ │ ├── SSL_CTX_set_default_passwd_cb.pod │ │ │ ├── SSL_CTX_set_generate_session_id.pod │ │ │ ├── SSL_CTX_set_info_callback.pod │ │ │ ├── SSL_CTX_set_max_cert_list.pod │ │ │ ├── SSL_CTX_set_mode.pod │ │ │ ├── SSL_CTX_set_msg_callback.pod │ │ │ ├── SSL_CTX_set_options.pod │ │ │ ├── SSL_CTX_set_psk_client_callback.pod │ │ │ ├── SSL_CTX_set_quiet_shutdown.pod │ │ │ ├── SSL_CTX_set_session_cache_mode.pod │ │ │ ├── SSL_CTX_set_session_id_context.pod │ │ │ ├── SSL_CTX_set_ssl_version.pod │ │ │ ├── SSL_CTX_set_timeout.pod │ │ │ ├── SSL_CTX_set_tmp_dh_callback.pod │ │ │ ├── SSL_CTX_set_tmp_rsa_callback.pod │ │ │ ├── SSL_CTX_set_verify.pod │ │ │ ├── SSL_CTX_use_certificate.pod │ │ │ ├── SSL_CTX_use_psk_identity_hint.pod │ │ │ ├── SSL_SESSION_free.pod │ │ │ ├── SSL_SESSION_get_ex_new_index.pod │ │ │ ├── SSL_SESSION_get_time.pod │ │ │ ├── SSL_accept.pod │ │ │ ├── SSL_alert_type_string.pod │ │ │ ├── SSL_clear.pod │ │ │ ├── SSL_connect.pod │ │ │ ├── SSL_do_handshake.pod │ │ │ ├── SSL_free.pod │ │ │ ├── SSL_get_SSL_CTX.pod │ │ │ ├── SSL_get_ciphers.pod │ │ │ ├── SSL_get_client_CA_list.pod │ │ │ ├── SSL_get_current_cipher.pod │ │ │ ├── SSL_get_default_timeout.pod │ │ │ ├── SSL_get_error.pod │ │ │ ├── SSL_get_ex_data_X509_STORE_CTX_idx.pod │ │ │ ├── SSL_get_ex_new_index.pod │ │ │ ├── SSL_get_fd.pod │ │ │ ├── SSL_get_peer_cert_chain.pod │ │ │ ├── SSL_get_peer_certificate.pod │ │ │ ├── SSL_get_psk_identity.pod │ │ │ ├── SSL_get_rbio.pod │ │ │ ├── SSL_get_session.pod │ │ │ ├── SSL_get_verify_result.pod │ │ │ ├── SSL_get_version.pod │ │ │ ├── SSL_library_init.pod │ │ │ ├── SSL_load_client_CA_file.pod │ │ │ ├── SSL_new.pod │ │ │ ├── SSL_pending.pod │ │ │ ├── SSL_read.pod │ │ │ ├── SSL_rstate_string.pod │ │ │ ├── SSL_session_reused.pod │ │ │ ├── SSL_set_bio.pod │ │ │ ├── SSL_set_connect_state.pod │ │ │ ├── SSL_set_fd.pod │ │ │ ├── SSL_set_session.pod │ │ │ ├── SSL_set_shutdown.pod │ │ │ ├── SSL_set_verify_result.pod │ │ │ ├── SSL_shutdown.pod │ │ │ ├── SSL_state_string.pod │ │ │ ├── SSL_want.pod │ │ │ ├── SSL_write.pod │ │ │ ├── d2i_SSL_SESSION.pod │ │ │ └── ssl.pod │ │ ├── ssleay.txt │ │ └── standards.txt │ │ ├── dotNetMF.proj │ │ ├── e_os.h │ │ ├── e_os2.h │ │ ├── engines │ │ ├── Makefile │ │ ├── alpha.opt │ │ ├── axp.opt │ │ ├── capierr.bat │ │ ├── ccgost │ │ │ ├── Makefile │ │ │ ├── README.gost │ │ │ ├── dotNetMF.proj │ │ │ ├── e_gost_err.cpp │ │ │ ├── e_gost_err.h │ │ │ ├── e_gost_err.proto │ │ │ ├── gost.ec │ │ │ ├── gost2001.cpp │ │ │ ├── gost2001_keyx.cpp │ │ │ ├── gost2001_keyx.h │ │ │ ├── gost89.cpp │ │ │ ├── gost89.h │ │ │ ├── gost94_keyx.cpp │ │ │ ├── gost_ameth.cpp │ │ │ ├── gost_asn1.cpp │ │ │ ├── gost_crypt.cpp │ │ │ ├── gost_ctl.cpp │ │ │ ├── gost_eng.cpp │ │ │ ├── gost_keywrap.cpp │ │ │ ├── gost_keywrap.h │ │ │ ├── gost_lcl.h │ │ │ ├── gost_md.cpp │ │ │ ├── gost_params.cpp │ │ │ ├── gost_params.h │ │ │ ├── gost_pmeth.cpp │ │ │ ├── gost_sign.cpp │ │ │ ├── gosthash.cpp │ │ │ ├── gosthash.h │ │ │ └── gostsum.cpp │ │ ├── dotNetMF.proj │ │ ├── e_4758cca.cpp │ │ ├── e_4758cca.ec │ │ ├── e_4758cca_err.cpp │ │ ├── e_4758cca_err.h │ │ ├── e_aep.cpp │ │ ├── e_aep.ec │ │ ├── e_aep_err.cpp │ │ ├── e_aep_err.h │ │ ├── e_atalla.cpp │ │ ├── e_atalla.ec │ │ ├── e_atalla_err.cpp │ │ ├── e_atalla_err.h │ │ ├── e_capi.cpp │ │ ├── e_capi.ec │ │ ├── e_capi_err.cpp │ │ ├── e_capi_err.h │ │ ├── e_chil.cpp │ │ ├── e_chil.ec │ │ ├── e_chil_err.cpp │ │ ├── e_chil_err.h │ │ ├── e_cswift.cpp │ │ ├── e_cswift.ec │ │ ├── e_cswift_err.cpp │ │ ├── e_cswift_err.h │ │ ├── e_gmp.cpp │ │ ├── e_gmp.ec │ │ ├── e_gmp_err.cpp │ │ ├── e_gmp_err.h │ │ ├── e_nuron.cpp │ │ ├── e_nuron.ec │ │ ├── e_nuron_err.cpp │ │ ├── e_nuron_err.h │ │ ├── e_padlock.cpp │ │ ├── e_padlock.ec │ │ ├── e_sureware.cpp │ │ ├── e_sureware.ec │ │ ├── e_sureware_err.cpp │ │ ├── e_sureware_err.h │ │ ├── e_ubsec.cpp │ │ ├── e_ubsec.ec │ │ ├── e_ubsec_err.cpp │ │ ├── e_ubsec_err.h │ │ ├── engine_vector.mar │ │ ├── ia64.opt │ │ ├── makeengines.com │ │ ├── vax.opt │ │ └── vendor_defns │ │ │ ├── aep.h │ │ │ ├── atalla.h │ │ │ ├── cswift.h │ │ │ ├── hw_4758_cca.h │ │ │ ├── hw_ubsec.h │ │ │ ├── hwcryptohook.h │ │ │ └── sureware.h │ │ ├── install.com │ │ ├── makevms.com │ │ ├── ms │ │ ├── .rnd │ │ ├── 32all.bat │ │ ├── README │ │ ├── applink.c │ │ ├── bcb4.bat │ │ ├── certCA.srl │ │ ├── certCA.ss │ │ ├── certU.ss │ │ ├── cmp.pl │ │ ├── do_ms.bat │ │ ├── do_nasm.bat │ │ ├── do_nt.bat │ │ ├── do_win64a.bat │ │ ├── do_win64i.bat │ │ ├── keyCA.ss │ │ ├── keyU.ss │ │ ├── libeay32.def │ │ ├── mingw32.bat │ │ ├── mw.bat │ │ ├── nt.mak │ │ ├── ntdll.mak │ │ ├── req2CA.ss │ │ ├── reqCA.ss │ │ ├── reqU.ss │ │ ├── speed32.bat │ │ ├── ssleay32.def │ │ ├── tenc.bat │ │ ├── tencce.bat │ │ ├── test.bat │ │ ├── testce.bat │ │ ├── testce2.bat │ │ ├── testenc.bat │ │ ├── testencce.bat │ │ ├── testpem.bat │ │ ├── testpemce.bat │ │ ├── testss.bat │ │ ├── testssce.bat │ │ ├── tlhelp32.h │ │ ├── tpem.bat │ │ ├── tpemce.bat │ │ ├── uplink-common.pl │ │ ├── uplink-ia64.pl │ │ ├── uplink-x86.pl │ │ ├── uplink-x86_64.pl │ │ ├── uplink.c │ │ ├── uplink.h │ │ ├── uplink.pl │ │ ├── version32.rc │ │ └── x86asm.bat │ │ ├── openssl.doxy │ │ ├── openssl.spec │ │ ├── os2 │ │ ├── OS2-EMX.cmd │ │ └── backwardify.pl │ │ ├── shlib │ │ ├── Makefile.hpux10-cc │ │ ├── README │ │ ├── hpux10-cc.sh │ │ ├── irix.sh │ │ ├── sco5-shared-gcc.sh │ │ ├── sco5-shared-installed │ │ ├── sco5-shared.sh │ │ ├── solaris-sc4.sh │ │ ├── solaris.sh │ │ ├── sun.sh │ │ ├── svr5-shared-gcc.sh │ │ ├── svr5-shared-installed │ │ ├── svr5-shared.sh │ │ ├── win32.bat │ │ └── win32dll.bat │ │ ├── ssl │ │ ├── Makefile │ │ ├── bio_ssl.cpp │ │ ├── d1_both.cpp │ │ ├── d1_clnt.cpp │ │ ├── d1_enc.cpp │ │ ├── d1_lib.cpp │ │ ├── d1_meth.cpp │ │ ├── d1_pkt.cpp │ │ ├── d1_srvr.cpp │ │ ├── dotNetMF.proj │ │ ├── dotNetMF_test.proj │ │ ├── dtls1.h │ │ ├── install.com │ │ ├── kssl.cpp │ │ ├── kssl.h │ │ ├── kssl_lcl.h │ │ ├── s23_clnt.cpp │ │ ├── s23_lib.cpp │ │ ├── s23_meth.cpp │ │ ├── s23_pkt.cpp │ │ ├── s23_srvr.cpp │ │ ├── s2_clnt.cpp │ │ ├── s2_enc.cpp │ │ ├── s2_lib.cpp │ │ ├── s2_meth.cpp │ │ ├── s2_pkt.cpp │ │ ├── s2_srvr.cpp │ │ ├── s3_both.cpp │ │ ├── s3_clnt.cpp │ │ ├── s3_enc.cpp │ │ ├── s3_lib.cpp │ │ ├── s3_meth.cpp │ │ ├── s3_pkt.cpp │ │ ├── s3_srvr.cpp │ │ ├── ssl-lib.com │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── ssl_algs.cpp │ │ ├── ssl_asn1.cpp │ │ ├── ssl_cert.cpp │ │ ├── ssl_ciph.cpp │ │ ├── ssl_err.cpp │ │ ├── ssl_err2.cpp │ │ ├── ssl_lib.cpp │ │ ├── ssl_locl.h │ │ ├── ssl_rsa.cpp │ │ ├── ssl_sess.cpp │ │ ├── ssl_stat.cpp │ │ ├── ssl_task.cpp │ │ ├── ssl_txt.cpp │ │ ├── ssltest.cpp │ │ ├── t1_clnt.cpp │ │ ├── t1_enc.cpp │ │ ├── t1_lib.cpp │ │ ├── t1_meth.cpp │ │ ├── t1_reneg.cpp │ │ ├── t1_srvr.cpp │ │ └── tls1.h │ │ ├── test │ │ ├── CAss.cnf │ │ ├── CAssdh.cnf │ │ ├── CAssdsa.cnf │ │ ├── CAssrsa.cnf │ │ ├── CAtsa.cnf │ │ ├── Makefile │ │ ├── P1ss.cnf │ │ ├── P2ss.cnf │ │ ├── Sssdsa.cnf │ │ ├── Sssrsa.cnf │ │ ├── Uss.cnf │ │ ├── VMSca-response.1 │ │ ├── VMSca-response.2 │ │ ├── asn1test.c │ │ ├── bctest │ │ ├── cms-examples.pl │ │ ├── cms-test.pl │ │ ├── dummytest.c │ │ ├── evptests.txt │ │ ├── igetest.c │ │ ├── maketests.com │ │ ├── methtest.c │ │ ├── pkcs7-1.pem │ │ ├── pkcs7.pem │ │ ├── pkits-test.pl │ │ ├── r160test.c │ │ ├── smcont.txt │ │ ├── smime-certs │ │ │ ├── smdsa1.pem │ │ │ ├── smdsa2.pem │ │ │ ├── smdsa3.pem │ │ │ ├── smdsap.pem │ │ │ ├── smroot.pem │ │ │ ├── smrsa1.pem │ │ │ ├── smrsa2.pem │ │ │ └── smrsa3.pem │ │ ├── tcrl │ │ ├── tcrl.com │ │ ├── test.cnf │ │ ├── test_padlock │ │ ├── testca │ │ ├── testca.com │ │ ├── testcrl.pem │ │ ├── testenc │ │ ├── testenc.com │ │ ├── testgen │ │ ├── testgen.com │ │ ├── testp7.pem │ │ ├── testreq2.pem │ │ ├── testrsa.pem │ │ ├── tests.com │ │ ├── testsid.pem │ │ ├── testss │ │ ├── testss.com │ │ ├── testssl │ │ ├── testssl.com │ │ ├── testsslproxy │ │ ├── testtsa │ │ ├── testtsa.com │ │ ├── testx509.pem │ │ ├── times │ │ ├── tpkcs7 │ │ ├── tpkcs7.com │ │ ├── tpkcs7d │ │ ├── tpkcs7d.com │ │ ├── treq │ │ ├── treq.com │ │ ├── trsa │ │ ├── trsa.com │ │ ├── tsid │ │ ├── tsid.com │ │ ├── tverify.com │ │ ├── tx509 │ │ ├── tx509.com │ │ ├── v3-cert1.pem │ │ └── v3-cert2.pem │ │ ├── times │ │ ├── 090 │ │ │ └── 586-100.nt │ │ ├── 091 │ │ │ ├── 486-50.nt │ │ │ ├── 586-100.lnx │ │ │ ├── 68000.bsd │ │ │ ├── 686-200.lnx │ │ │ ├── alpha064.osf │ │ │ ├── alpha164.lnx │ │ │ ├── alpha164.osf │ │ │ ├── mips-rel.pl │ │ │ ├── r10000.irx │ │ │ ├── r3000.ult │ │ │ └── r4400.irx │ │ ├── 100.lnx │ │ ├── 100.nt │ │ ├── 200.lnx │ │ ├── 486-66.dos │ │ ├── 486-66.nt │ │ ├── 486-66.w31 │ │ ├── 5.lnx │ │ ├── 586-085i.nt │ │ ├── 586-100.LN3 │ │ ├── 586-100.NT2 │ │ ├── 586-100.dos │ │ ├── 586-100.ln4 │ │ ├── 586-100.lnx │ │ ├── 586-100.nt │ │ ├── 586-100.ntx │ │ ├── 586-100.w31 │ │ ├── 586-1002.lnx │ │ ├── 586p-100.lnx │ │ ├── 686-200.bsd │ │ ├── 686-200.lnx │ │ ├── 686-200.nt │ │ ├── L1 │ │ ├── R10000.t │ │ ├── R4400.t │ │ ├── aix.t │ │ ├── aixold.t │ │ ├── alpha.t │ │ ├── alpha400.t │ │ ├── cyrix100.lnx │ │ ├── dgux-x86.t │ │ ├── dgux.t │ │ ├── hpux-acc.t │ │ ├── hpux-kr.t │ │ ├── hpux.t │ │ ├── p2.w95 │ │ ├── pent2.t │ │ ├── readme │ │ ├── s586-100.lnx │ │ ├── s586-100.nt │ │ ├── sgi.t │ │ ├── sparc.t │ │ ├── sparc2 │ │ ├── sparcLX.t │ │ ├── usparc.t │ │ └── x86 │ │ │ ├── bfs.cpp │ │ │ ├── casts.cpp │ │ │ ├── des3s.cpp │ │ │ ├── dess.cpp │ │ │ ├── md4s.cpp │ │ │ ├── md5s.cpp │ │ │ ├── rc4s.cpp │ │ │ └── sha1s.cpp │ │ ├── tinyclr │ │ ├── Legacy_support.cpp │ │ ├── dotNetMF.proj │ │ ├── file.cpp │ │ ├── file.h │ │ ├── ssl_accept_internal.cpp │ │ ├── ssl_add_cert_auth_internal.cpp │ │ ├── ssl_clear_cert_auth_internal.cpp │ │ ├── ssl_closesocket_internal.cpp │ │ ├── ssl_connect_internal.cpp │ │ ├── ssl_exit_context_internal.cpp │ │ ├── ssl_functions.h │ │ ├── ssl_generic_init_internal.cpp │ │ ├── ssl_initialize_internal.cpp │ │ ├── ssl_parse_certificate_internal.cpp │ │ ├── ssl_pending_internal.cpp │ │ ├── ssl_read_internal.cpp │ │ ├── ssl_types.cpp │ │ ├── ssl_types.h │ │ ├── ssl_uninitialize_internal.cpp │ │ ├── ssl_write_internal.cpp │ │ └── test │ │ │ ├── dotNetMF.proj │ │ │ ├── ssl_test_bf.cpp │ │ │ ├── ssl_test_bn.cpp │ │ │ ├── ssl_test_cast.cpp │ │ │ ├── ssl_test_des.cpp │ │ │ ├── ssl_test_dh.cpp │ │ │ ├── ssl_test_dsa.cpp │ │ │ ├── ssl_test_ec.cpp │ │ │ ├── ssl_test_ecdh.cpp │ │ │ ├── ssl_test_ecdsa.cpp │ │ │ ├── ssl_test_engine.cpp │ │ │ ├── ssl_test_evp.cpp │ │ │ ├── ssl_test_exp.cpp │ │ │ ├── ssl_test_hmac.cpp │ │ │ ├── ssl_test_idea.cpp │ │ │ ├── ssl_test_lhash.cpp │ │ │ ├── ssl_test_md2.cpp │ │ │ ├── ssl_test_md4.cpp │ │ │ ├── ssl_test_md5.cpp │ │ │ ├── ssl_test_pqueue.cpp │ │ │ ├── ssl_test_rand.cpp │ │ │ ├── ssl_test_rc2.cpp │ │ │ ├── ssl_test_rc4.cpp │ │ │ ├── ssl_test_rc5.cpp │ │ │ ├── ssl_test_ripemd.cpp │ │ │ ├── ssl_test_rsa.cpp │ │ │ ├── ssl_test_sha.cpp │ │ │ ├── ssl_test_sha1.cpp │ │ │ ├── ssl_test_sha256.cpp │ │ │ ├── ssl_test_sha512.cpp │ │ │ ├── ssl_test_whrlpool.cpp │ │ │ ├── ssl_test_x509v3.cpp │ │ │ └── ssl_tests.h │ │ ├── tools │ │ ├── Makefile │ │ ├── c89.sh │ │ ├── c_hash │ │ ├── c_info │ │ ├── c_issuer │ │ ├── c_name │ │ ├── c_rehash │ │ └── c_rehash.in │ │ └── util │ │ ├── FreeBSD.sh │ │ ├── add_cr.pl │ │ ├── bat.sh │ │ ├── ck_errf.pl │ │ ├── clean-depend.pl │ │ ├── copy.pl │ │ ├── cygwin.sh │ │ ├── deleof.pl │ │ ├── deltree.com │ │ ├── dirname.pl │ │ ├── do_ms.sh │ │ ├── domd │ │ ├── err-ins.pl │ │ ├── extract-names.pl │ │ ├── extract-section.pl │ │ ├── files.pl │ │ ├── fixNT.sh │ │ ├── install.sh │ │ ├── libeay.num │ │ ├── mk1mf.pl │ │ ├── mkcerts.sh │ │ ├── mkdef.pl │ │ ├── mkdir-p.pl │ │ ├── mkerr.pl │ │ ├── mkfiles.pl │ │ ├── mklink.pl │ │ ├── mkrc.pl │ │ ├── mkstack.pl │ │ ├── opensslwrap.sh │ │ ├── perlpath.pl │ │ ├── pl │ │ ├── BC-32.pl │ │ ├── Mingw32.pl │ │ ├── OS2-EMX.pl │ │ ├── VC-32.pl │ │ ├── linux.pl │ │ ├── netware.pl │ │ ├── ultrix.pl │ │ └── unix.pl │ │ ├── pod2man.pl │ │ ├── pod2mantest │ │ ├── pod2mantest.pod │ │ ├── point.sh │ │ ├── selftest.pl │ │ ├── shlib_wrap.sh │ │ ├── sp-diff.pl │ │ ├── speed.sh │ │ ├── src-dep.pl │ │ ├── ssleay.num │ │ ├── tab_num.pl │ │ └── x86asm.sh │ ├── PKCS11 │ ├── Cryptoki.cpp │ ├── CryptokiPAL.h │ ├── Digest.h │ ├── DualCrypto.cpp │ ├── DualCrypto.h │ ├── Encryption.cpp │ ├── Encryption.h │ ├── Keys.cpp │ ├── Keys.h │ ├── Object.cpp │ ├── Object.h │ ├── Pkcs11Digest.cpp │ ├── Random.cpp │ ├── Random.h │ ├── Session.cpp │ ├── Session.h │ ├── Signature.cpp │ ├── Signature.h │ ├── Slot.cpp │ ├── Slot.h │ ├── Storage │ │ └── stubs │ │ │ ├── PKCS11_storage_stub.cpp │ │ │ ├── PKCS11_storage_stub.h │ │ │ └── dotNetMF.proj │ ├── Tokens │ │ ├── Legacy │ │ │ ├── NetMFCrypto.cpp │ │ │ ├── NetMFCrypto.h │ │ │ └── dotNetMF.proj │ │ ├── OpenSSL │ │ │ ├── OpenSSL_PKCS11.h │ │ │ ├── OpenSSL_PKCS11_Config.cpp │ │ │ ├── OpenSSL_PKCS11_Token.cpp │ │ │ ├── OpenSSL_PKCS11_digest.cpp │ │ │ ├── OpenSSL_PKCS11_encryption.cpp │ │ │ ├── OpenSSL_PKCS11_keys.cpp │ │ │ ├── OpenSSL_PKCS11_objects.cpp │ │ │ ├── OpenSSL_PKCS11_random.cpp │ │ │ ├── OpenSSL_PKCS11_session.cpp │ │ │ ├── OpenSSL_PKCS11_signature.cpp │ │ │ └── dotNetMF.proj │ │ └── stubs │ │ │ ├── PKCS11_Token_stub.cpp │ │ │ ├── PKCS11_config_stub.cpp │ │ │ ├── PKCS11_digest_stub.cpp │ │ │ ├── PKCS11_encryption_stub.cpp │ │ │ ├── PKCS11_keys_stub.cpp │ │ │ ├── PKCS11_objects_stub.cpp │ │ │ ├── PKCS11_random_stub.cpp │ │ │ ├── PKCS11_session_stub.cpp │ │ │ ├── PKCS11_signature_stub.cpp │ │ │ ├── PKCS11_stub.h │ │ │ └── dotNetMF.proj │ ├── cryptoki.h │ ├── ct-kip.h │ ├── dotNetMF.proj │ ├── otp-pkcs11.h │ ├── pkcs11.h │ ├── pkcs11_v2_20a3.h │ ├── pkcs11f.h │ └── pkcs11t.h │ ├── SimpleHeap │ ├── SimpleHeap.cpp │ ├── dotNetMF.proj │ └── stubs │ │ ├── SimpleHeap_stubs.cpp │ │ └── dotNetMF.proj │ ├── SimpleHeap_config │ ├── SimpleHeap_config.cpp │ ├── Stubs │ │ ├── SimpleHeap_config_stubs.cpp │ │ └── dotNetMF.proj │ └── dotNetMF.proj │ ├── SimpleStorage │ ├── SimpleStorage.cpp │ ├── SimpleStorage_decl.h │ ├── dotNetMF.proj │ └── stubs │ │ ├── SimpleStorage_stub.cpp │ │ └── dotNetMF.proj │ ├── StateDebounce │ ├── StateDebounce.cpp │ ├── dotNetMF.proj │ └── stubs │ │ ├── StateDebounce_stubs.cpp │ │ └── dotNetMF.proj │ ├── TouchPanel │ ├── dotNetMF.proj │ ├── stubs │ │ ├── dotNetMF.proj │ │ └── touchpanel_stubs.cpp │ ├── touchpanel_driver.cpp │ ├── touchpanel_driver.h │ └── touchpanel_functions.cpp │ ├── configuration │ ├── ConfigHelper.cpp │ ├── dotNetMF.proj │ ├── dotNetMF_loader.proj │ └── stubs │ │ ├── ConfigHelper_stubs.cpp │ │ └── dotNetMF.proj │ ├── dotNetMF.proj │ ├── events │ ├── dotNetMF.proj │ ├── events.cpp │ └── stubs │ │ ├── dotNetMF.proj │ │ └── events_stubs.cpp │ ├── fs │ ├── dotNetMF.proj │ ├── fs_pal.cpp │ └── stubs │ │ ├── Config │ │ ├── FS_config_stubs.cpp │ │ └── dotNetMF.proj │ │ ├── dotNetMF.proj │ │ └── fs_stubs.cpp │ ├── graphics │ ├── dotNetMF.proj │ ├── graphics.cpp │ ├── graphics.h │ └── stubs │ │ ├── dotNetMF.proj │ │ └── graphics_stubs.cpp │ ├── heap │ ├── dotNetMF.proj │ ├── heap.cpp │ └── stubs │ │ ├── dotNetMF.proj │ │ └── heap_stubs.cpp │ ├── io │ ├── GPIO_OUTPUT_fastcompile.cpp │ ├── GPIO_Output.cpp │ ├── GPIO_Output.h │ ├── OUTPUT_config.cpp │ ├── dotNetMF.proj │ └── stubs │ │ ├── GPIO_Output_Stubs.cpp │ │ └── dotNetMF.proj │ ├── lwip_1_4_1_os │ ├── SocketsDriver │ │ ├── SocketsDriver.vcxproj │ │ ├── SocketsDriver.vcxproj.filters │ │ ├── dotNetMF.proj │ │ ├── lwIP_Sockets.h │ │ ├── lwIP_Sockets_functions.cpp │ │ ├── lwIP__Sockets.cpp │ │ ├── readme.txt │ │ └── stubs │ │ │ ├── SocketsDriver_stubs.cpp │ │ │ └── dotNetMF.proj │ ├── config │ │ └── lwipopts.h │ ├── dotNetMF.proj │ ├── lwip │ │ ├── CHANGELOG │ │ ├── COPYING │ │ ├── FILES │ │ ├── README.txt │ │ ├── UPGRADING │ │ ├── doc │ │ │ ├── FILES │ │ │ ├── contrib.txt │ │ │ ├── rawapi.txt │ │ │ ├── savannah.txt │ │ │ ├── snmp_agent.txt │ │ │ └── sys_arch.txt │ │ ├── dotNetMF.proj │ │ ├── lwIP.vcxproj │ │ ├── lwIP.vcxproj.filters │ │ ├── src │ │ │ ├── FILES │ │ │ ├── api │ │ │ │ ├── api_lib.c │ │ │ │ ├── api_msg.c │ │ │ │ ├── err.c │ │ │ │ ├── netbuf.c │ │ │ │ ├── netdb.c │ │ │ │ ├── netifapi.c │ │ │ │ ├── sockets.c │ │ │ │ └── tcpip.c │ │ │ ├── core │ │ │ │ ├── def.c │ │ │ │ ├── dhcp.c │ │ │ │ ├── dns.c │ │ │ │ ├── init.c │ │ │ │ ├── ipv4 │ │ │ │ │ ├── autoip.c │ │ │ │ │ ├── icmp.c │ │ │ │ │ ├── igmp.c │ │ │ │ │ ├── inet.c │ │ │ │ │ ├── inet_chksum.c │ │ │ │ │ ├── ip.c │ │ │ │ │ ├── ip_addr.c │ │ │ │ │ └── ip_frag.c │ │ │ │ ├── ipv6 │ │ │ │ │ ├── README │ │ │ │ │ ├── icmp6.c │ │ │ │ │ ├── inet6.c │ │ │ │ │ ├── ip6.c │ │ │ │ │ └── ip6_addr.c │ │ │ │ ├── mem.c │ │ │ │ ├── memp.c │ │ │ │ ├── netif.c │ │ │ │ ├── pbuf.c │ │ │ │ ├── raw.c │ │ │ │ ├── snmp │ │ │ │ │ ├── asn1_dec.c │ │ │ │ │ ├── asn1_enc.c │ │ │ │ │ ├── mib2.c │ │ │ │ │ ├── mib_structs.c │ │ │ │ │ ├── msg_in.c │ │ │ │ │ └── msg_out.c │ │ │ │ ├── stats.c │ │ │ │ ├── sys.c │ │ │ │ ├── tcp.c │ │ │ │ ├── tcp_in.c │ │ │ │ ├── tcp_out.c │ │ │ │ ├── timers.c │ │ │ │ └── udp.c │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_dhcp.proj │ │ │ ├── dotNetMF_sockets.proj │ │ │ ├── dotNetMF_tcp.proj │ │ │ ├── dotNetMF_udp.proj │ │ │ ├── include │ │ │ │ ├── ipv4 │ │ │ │ │ └── lwip │ │ │ │ │ │ ├── autoip.h │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ ├── inet_chksum.h │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ ├── ip_addr.h │ │ │ │ │ │ └── ip_frag.h │ │ │ │ ├── ipv6 │ │ │ │ │ └── lwip │ │ │ │ │ │ ├── icmp.h │ │ │ │ │ │ ├── inet.h │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ └── ip_addr.h │ │ │ │ ├── lwip │ │ │ │ │ ├── api.h │ │ │ │ │ ├── api_msg.h │ │ │ │ │ ├── arch.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── def.h │ │ │ │ │ ├── dhcp.h │ │ │ │ │ ├── dns.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── init.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── memp.h │ │ │ │ │ ├── memp_std.h │ │ │ │ │ ├── netbuf.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── netif.h │ │ │ │ │ ├── netifapi.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── pbuf.h │ │ │ │ │ ├── raw.h │ │ │ │ │ ├── sio.h │ │ │ │ │ ├── snmp.h │ │ │ │ │ ├── snmp_asn1.h │ │ │ │ │ ├── snmp_msg.h │ │ │ │ │ ├── snmp_structs.h │ │ │ │ │ ├── sockets.h │ │ │ │ │ ├── stats.h │ │ │ │ │ ├── sys.h │ │ │ │ │ ├── tcp.h │ │ │ │ │ ├── tcp_impl.h │ │ │ │ │ ├── tcpip.h │ │ │ │ │ ├── timers.h │ │ │ │ │ └── udp.h │ │ │ │ ├── netif │ │ │ │ │ ├── etharp.h │ │ │ │ │ ├── ppp_oe.h │ │ │ │ │ └── slipif.h │ │ │ │ └── posix │ │ │ │ │ ├── netdb.h │ │ │ │ │ └── sys │ │ │ │ │ └── socket.h │ │ │ └── netif │ │ │ │ ├── FILES │ │ │ │ ├── etharp.c │ │ │ │ ├── ethernetif.c │ │ │ │ ├── ppp │ │ │ │ ├── auth.c │ │ │ │ ├── auth.h │ │ │ │ ├── chap.c │ │ │ │ ├── chap.h │ │ │ │ ├── chpms.c │ │ │ │ ├── chpms.h │ │ │ │ ├── fsm.c │ │ │ │ ├── fsm.h │ │ │ │ ├── ipcp.c │ │ │ │ ├── ipcp.h │ │ │ │ ├── lcp.c │ │ │ │ ├── lcp.h │ │ │ │ ├── magic.c │ │ │ │ ├── magic.h │ │ │ │ ├── md5.c │ │ │ │ ├── md5.h │ │ │ │ ├── pap.c │ │ │ │ ├── pap.h │ │ │ │ ├── ppp.c │ │ │ │ ├── ppp.h │ │ │ │ ├── ppp_impl.h │ │ │ │ ├── ppp_oe.c │ │ │ │ ├── pppdebug.h │ │ │ │ ├── randm.c │ │ │ │ ├── randm.h │ │ │ │ ├── vj.c │ │ │ │ └── vj.h │ │ │ │ └── slipif.c │ │ └── test │ │ │ └── unit │ │ │ ├── core │ │ │ ├── test_mem.c │ │ │ └── test_mem.h │ │ │ ├── etharp │ │ │ ├── test_etharp.c │ │ │ └── test_etharp.h │ │ │ ├── lwip_check.h │ │ │ ├── lwip_unittests.c │ │ │ ├── lwipopts.h │ │ │ ├── tcp │ │ │ ├── tcp_helper.c │ │ │ ├── tcp_helper.h │ │ │ ├── test_tcp.c │ │ │ ├── test_tcp.h │ │ │ ├── test_tcp_oos.c │ │ │ └── test_tcp_oos.h │ │ │ └── udp │ │ │ ├── test_udp.c │ │ │ └── test_udp.h │ └── readme.txt │ ├── net │ ├── Network_defines.h │ ├── Network_defines_lwip.h │ ├── net_decl.h │ └── net_decl_lwip.h │ ├── palevent │ ├── Stubs │ │ ├── dotnetmf.proj │ │ └── palevent_stubs.cpp │ ├── dotNetMF.proj │ ├── palevent_driver.cpp │ ├── palevent_driver.h │ └── palevent_functions.cpp │ ├── piezo │ ├── Piezo.cpp │ ├── Piezo.h │ ├── Piezo_config.cpp │ ├── dotNetMF.proj │ ├── piezo_fastcompile.cpp │ └── stubs │ │ ├── Config │ │ ├── dotNetMF.proj │ │ └── piezo_config_stubs.cpp │ │ ├── dotNetMF.proj │ │ └── piezo_stubs.cpp │ ├── time │ ├── dotNetMF.proj │ ├── stubs │ │ ├── dotNetMF.proj │ │ └── time_stubs.cpp │ ├── time_driver.cpp │ ├── time_driver.h │ └── time_functions.cpp │ ├── timeservice │ ├── dotNetMF.proj │ ├── driver │ │ ├── dotNetMF.proj │ │ ├── fastcompile_timeservice.cpp │ │ ├── ntp.cpp │ │ ├── ntp.h │ │ └── timeservice_generic_functions.cpp │ ├── stubs │ │ ├── dotNetMF.proj │ │ └── timeservice_stubs.cpp │ ├── timeservice_driver.cpp │ ├── timeservice_driver.h │ └── timeservice_functions.cpp │ ├── tinycrt │ ├── dotNetMF.proj │ ├── dotNetMF_loader.proj │ ├── stubs │ │ ├── dotNetMF.proj │ │ └── tinycrt_stubs.cpp │ └── tinycrt.cpp │ └── watchdog │ ├── Watchdog_driver.cpp │ ├── Watchdog_driver.h │ ├── Watchdog_functions.cpp │ ├── dotNetMF.proj │ └── stubs │ ├── Watchdog_stubs.cpp │ └── dotNetMF.proj ├── Fonts ├── NinaB.tinyfnt └── small.tinyfnt ├── Framework ├── CorDebug │ ├── ConnectionPoint.cs │ ├── CorDebug.cs │ ├── CorDebugAppDomain.cs │ ├── CorDebugAssembly.cs │ ├── CorDebugBreakpoint.cs │ ├── CorDebugBreakpointStepper.cs │ ├── CorDebugChain.cs │ ├── CorDebugClass.cs │ ├── CorDebugCode.cs │ ├── CorDebugEnum.cs │ ├── CorDebugEval.cs │ ├── CorDebugFrame.cs │ ├── CorDebugFunction.cs │ ├── CorDebugProcess.cs │ ├── CorDebugStepper.cs │ ├── CorDebugThread.cs │ ├── CorDebugType.cs │ ├── CorDebugValue.cs │ ├── DebugEvent.cs │ ├── DebugPort.cs │ ├── DebugPortSupplier.cs │ ├── DebuggerInteropConstants.cs │ ├── DiagnosticStrings.Designer.cs │ ├── DiagnosticStrings.resx │ ├── Extenders.cs │ ├── ICorDebugInterop.cs │ ├── Intellisense.cs │ ├── ManagedCallbacks.cs │ ├── MessageCentre.cs │ ├── MetaDataImport.cs │ ├── MetaDataImportInterface.cs │ ├── Pdbx.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── PropertyPage.cs │ ├── PropertyPageProjectOptions.cs │ ├── PropertyPageProjectOptions.resx │ ├── PropertyPageProjectOptionsComObject.cs │ ├── ResXFileCodeGenerator.cs │ ├── Resources │ │ ├── DotNetMF.bmp │ │ ├── Icons │ │ │ ├── CSharpProject.ico │ │ │ ├── SplashIcon.ico │ │ │ └── VisualBasicProject.ico │ │ ├── NetMFLogo.bmp │ │ ├── NetMFLogo.png │ │ └── Resx │ │ │ └── VSPackage.resx │ ├── TargetFrameworkAssemblies.cs │ ├── TinyCLR_TypeSystem.cs │ ├── Utility.cs │ ├── VsPackage.cs │ ├── VsProject.cs │ ├── VsProjectCSharp.cs │ ├── VsProjectFactory.cs │ ├── VsProjectFlavorCfg.cs │ ├── VsProjectVisualBasic.cs │ ├── VsProvideExpressLoadKeyAttribute.cs │ ├── WiXRegistryInclude.wxs │ ├── WixVSCommon.wxs │ ├── WixVSVersionSpecific.wxs │ ├── XmlSerializers │ │ └── PdbxFile.cs │ ├── vs12 │ │ ├── NetmfVS2013.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── cordebugvs12.csproj │ │ ├── cordebugvs12.sln │ │ └── source.extension.vsixmanifest │ └── vs14 │ │ ├── NetmfVS14.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── cordebugvs14.csproj │ │ ├── cordebugvs14.sln │ │ └── source.extension.vsixmanifest ├── Core │ ├── Drivers │ │ ├── 802_15_4 │ │ │ ├── 802_15_4_MF.sln │ │ │ ├── Stack │ │ │ │ ├── Network │ │ │ │ │ ├── 802_15_4_MF_Network.csproj │ │ │ │ │ ├── AddressServer.cs │ │ │ │ │ ├── Fragmentation │ │ │ │ │ │ ├── BitArray.cs │ │ │ │ │ │ ├── DataRequestQueue.cs │ │ │ │ │ │ ├── Fragment.cs │ │ │ │ │ │ ├── Fragmentation.cs │ │ │ │ │ │ ├── FragmentationMessage.cs │ │ │ │ │ │ ├── FragmentationMessageTimer.cs │ │ │ │ │ │ ├── FragmentationMesssageAssociations.cs │ │ │ │ │ │ ├── IFragmentation.cs │ │ │ │ │ │ ├── NotifyingQueue.cs │ │ │ │ │ │ └── TransmissionCharacteristicStorage.cs │ │ │ │ │ ├── INetwork.cs │ │ │ │ │ ├── MessageContext.cs │ │ │ │ │ ├── Messages_6LoWPAN.cs │ │ │ │ │ ├── Messages_custom.cs │ │ │ │ │ ├── NeighbourTable.cs │ │ │ │ │ ├── NetworkLayer.cs │ │ │ │ │ ├── NetworkMgmt.cs │ │ │ │ │ ├── Properties_MF │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Routing.cs │ │ │ │ │ ├── RoutingTable.cs │ │ │ │ │ └── Singleton.cs │ │ │ │ ├── Physical │ │ │ │ │ ├── CC2420 │ │ │ │ │ │ ├── 802_15_4_MF_CC2420_Interop_PHY.csproj │ │ │ │ │ │ ├── 802_15_4_MF_CC2420_PHY.csproj │ │ │ │ │ │ ├── 802_15_4_MF_MAC.csproj │ │ │ │ │ │ ├── 802_15_4_MF_PHY.csproj │ │ │ │ │ │ ├── Crc.cs │ │ │ │ │ │ ├── Frame.cs │ │ │ │ │ │ ├── IPhy.cs │ │ │ │ │ │ ├── MAC │ │ │ │ │ │ │ ├── Frames │ │ │ │ │ │ │ │ ├── BeaconFrame.cs │ │ │ │ │ │ │ │ ├── CommandFrames.cs │ │ │ │ │ │ │ │ └── Header.cs │ │ │ │ │ │ │ ├── IMac.cs │ │ │ │ │ │ │ ├── Mac.cs │ │ │ │ │ │ │ ├── MacReceive.cs │ │ │ │ │ │ │ ├── MacState.cs │ │ │ │ │ │ │ ├── PhySendReceive.cs │ │ │ │ │ │ │ ├── TaskProcessor.cs │ │ │ │ │ │ │ ├── TaskQueue.cs │ │ │ │ │ │ │ └── TaskTypes.cs │ │ │ │ │ │ ├── PHY │ │ │ │ │ │ │ └── CC2420 │ │ │ │ │ │ │ │ ├── CC2420.Driver.cs │ │ │ │ │ │ │ │ ├── CC2420.HAL.cs │ │ │ │ │ │ │ │ └── CC2420.PinConfig.cs │ │ │ │ │ │ └── Utils.cs │ │ │ │ │ └── build.dirproj │ │ │ │ └── build.dirproj │ │ │ └── build.dirproj │ │ ├── Bluetooth │ │ │ ├── BTConnection.cs │ │ │ ├── BTDeviceInfo.cs │ │ │ ├── BTDriver.cs │ │ │ ├── BTManager.cs │ │ │ ├── Bluetooth.csproj │ │ │ ├── DefaultPowerPolicy.cs │ │ │ ├── IPowerPolicy.cs │ │ │ ├── IPowerState.cs │ │ │ ├── PromiSDBTDriver.cs │ │ │ └── SerialStream.cs │ │ └── build.dirproj │ ├── Native │ │ ├── Core_Native.csproj │ │ ├── Debug.cs │ │ ├── Delegates.cs │ │ ├── EventArgs.cs │ │ ├── ExecutionConstraint.cs │ │ ├── HW_SystemInfo.cs │ │ ├── HW_Utility.cs │ │ ├── Interfaces.cs │ │ ├── Math.cs │ │ ├── Messaging.cs │ │ ├── Native_Resources.designer.cs │ │ ├── Native_Resources.resx │ │ ├── Reflection.cs │ │ ├── Resources.cs │ │ ├── Timers.cs │ │ ├── WeakReference.cs │ │ └── X509Certificate.cs │ ├── Native_Graphics │ │ ├── Bitmap.cs │ │ ├── Color.cs │ │ ├── Core_Native_Graphics.csproj │ │ └── Font.cs │ ├── Native_Hardware │ │ ├── AnalogInput.cs │ │ ├── AnalogOutput.cs │ │ ├── ButtonEnum.cs │ │ ├── Core_Native_Hardware.csproj │ │ ├── Cpu.cs │ │ ├── EventSink.cs │ │ ├── HW_Battery.cs │ │ ├── HardwareProvider.cs │ │ ├── I2C.cs │ │ ├── IOPorts.cs │ │ ├── LargeBuffer.cs │ │ ├── Native_OneWire │ │ │ ├── Core_Native_Hardware_OneWire.cs │ │ │ └── Core_Native_Hardware_OneWire.csproj │ │ ├── Native_PWM │ │ │ ├── Core_Native_Hardware_PWM.csproj │ │ │ └── PWM.cs │ │ ├── Native_UART │ │ │ ├── Core_Native_Hardware_UART.csproj │ │ │ └── SerialPort.cs │ │ ├── Native_USB │ │ │ ├── Core_Native_Hardware_USB.csproj │ │ │ └── UsbClient.cs │ │ ├── Ports.cs │ │ ├── SPI.cs │ │ └── Uptime.cs │ ├── Native_IO │ │ ├── Core_IO.csproj │ │ ├── FileSystemManager.cs │ │ ├── IO.cs │ │ └── MediaManager.cs │ ├── Native_Net │ │ ├── Core_Net.csproj │ │ ├── NetworkChange.cs │ │ ├── NetworkInterface.cs │ │ ├── Sockets.cs │ │ └── Wireless.cs │ ├── Native_Net_Security │ │ ├── Core_Net_Security.csproj │ │ └── NetworkSecurity.cs │ ├── Native_TimeService │ │ ├── Core_TimeService.csproj │ │ └── TimeService.cs │ ├── Native_Touch │ │ ├── Core_Touch.csproj │ │ ├── Ink.cs │ │ ├── Touch.cs │ │ ├── TouchCollector.cs │ │ ├── TouchPanel.cs │ │ └── TouchScreen.cs │ ├── Native_Update │ │ ├── Core_Update.csproj │ │ └── Update.cs │ ├── RPC │ │ ├── RPC.csproj │ │ ├── RpcClient.cs │ │ └── RpcServer.cs │ ├── System │ │ ├── FTP │ │ │ ├── Client │ │ │ │ ├── FTPCommand.cs │ │ │ │ ├── FTPWebRequest.cs │ │ │ │ ├── FtpWebRequestCreator.cs │ │ │ │ ├── FtpWebResponse.cs │ │ │ │ └── WebRequestMethods.cs │ │ │ └── Server │ │ │ │ ├── FilePath.cs │ │ │ │ ├── FtpCommand.cs │ │ │ │ ├── FtpListener.cs │ │ │ │ ├── FtpListenerContext.cs │ │ │ │ ├── FtpListenerManager.cs │ │ │ │ ├── FtpListenerRequest.cs │ │ │ │ ├── FtpListenerResponse.cs │ │ │ │ ├── FtpListenerSession.cs │ │ │ │ ├── FtpResponseStream.cs │ │ │ │ ├── Listeners │ │ │ │ ├── FtpDefaultListener.cs │ │ │ │ ├── FtpFilesystemListener.cs │ │ │ │ └── FtpMemoryListener.cs │ │ │ │ ├── Logging.cs │ │ │ │ ├── PrefixList.cs │ │ │ │ ├── SessionPool.cs │ │ │ │ ├── Types.cs │ │ │ │ └── Util.cs │ │ ├── HTTP │ │ │ ├── System.Net.AuthenticationType.cs │ │ │ ├── System.Net.HttpListener.cs │ │ │ ├── System.Net.HttpListenerContext.cs │ │ │ ├── System.Net.HttpListenerRequest.cs │ │ │ ├── System.Net.HttpListenerResponse.cs │ │ │ ├── System.Net.HttpStatusCode.cs │ │ │ ├── System.Net.HttpVersion.cs │ │ │ ├── System.Net.HttpWebRequest.cs │ │ │ ├── System.Net.HttpWebResponse.cs │ │ │ ├── System.Net.IWebRequestCreate.cs │ │ │ ├── System.Net.Internal.cs │ │ │ ├── System.Net.NetworkCredential.cs │ │ │ ├── System.Net.ProtocolViolationException.cs │ │ │ ├── System.Net.WebException.cs │ │ │ ├── System.Net.WebHeaders.cs │ │ │ ├── System.Net.WebRequest.cs │ │ │ ├── System.Net.WebResponse.cs │ │ │ ├── System.Net.WebStatus.cs │ │ │ ├── System.Net._HeaderInfo.cs │ │ │ ├── System.Net._HeaderInfoTable.cs │ │ │ ├── System.Net._HttpDateParse.cs │ │ │ ├── System.Net._InputNetworkStreamWrapper.cs │ │ │ ├── System.Net._OutputNetworkStreamWrapper.cs │ │ │ ├── System.Net._ValidationHelper.cs │ │ │ ├── System.Net.iwebproxy.cs │ │ │ ├── System.Net.webproxy.cs │ │ │ └── System.Uri.cs │ │ ├── IO.csproj │ │ ├── IO │ │ │ ├── Directory.cs │ │ │ ├── DirectoryInfo.cs │ │ │ ├── File.cs │ │ │ ├── FileAccess.cs │ │ │ ├── FileAttributes.cs │ │ │ ├── FileEnum.cs │ │ │ ├── FileInfo.cs │ │ │ ├── FileMode.cs │ │ │ ├── FileShare.cs │ │ │ ├── FileStream.cs │ │ │ ├── FileSystemInfo.cs │ │ │ ├── MemoryStream.cs │ │ │ ├── Path.cs │ │ │ ├── StreamReader.cs │ │ │ ├── StreamWriter.cs │ │ │ ├── TextReader.cs │ │ │ └── TextWriter.cs │ │ ├── RegularExpressions │ │ │ ├── Classes │ │ │ │ ├── Capture.cs │ │ │ │ ├── CharacterClass.cs │ │ │ │ ├── CharacterRange.cs │ │ │ │ ├── Group.cs │ │ │ │ ├── Match.cs │ │ │ │ ├── MatchEvaluator.cs │ │ │ │ ├── Regex.cs │ │ │ │ ├── RegexProgram.cs │ │ │ │ ├── StreamCharacterIterator.cs │ │ │ │ └── StringCharacterIterator.cs │ │ │ ├── Collections │ │ │ │ ├── CaptureCollection.cs │ │ │ │ ├── CaptureEnumerator.cs │ │ │ │ ├── GroupCollection.cs │ │ │ │ ├── GroupEnumerator.cs │ │ │ │ ├── MatchCollection.cs │ │ │ │ └── MatchEnumerator.cs │ │ │ ├── Compiler │ │ │ │ ├── RegexCompiler.cs │ │ │ │ ├── RegexDebugCompiler.cs │ │ │ │ └── RegexPrecompiler.cs │ │ │ ├── Core_RegEx.csproj │ │ │ ├── Core_RegEx.sln │ │ │ ├── Enumerations │ │ │ │ ├── EscapeCode.cs │ │ │ │ ├── OpCode.cs │ │ │ │ ├── POSIXCharacterClass.cs │ │ │ │ ├── ProgramOptions.cs │ │ │ │ ├── RegexOptions.cs │ │ │ │ ├── ReplaceOptions.cs │ │ │ │ └── SpecialEscape.cs │ │ │ ├── Exceptions │ │ │ │ ├── RegexExecutionTimeException.cs │ │ │ │ └── SyntaxException.cs │ │ │ ├── Interfaces │ │ │ │ └── ICharacterIterator.cs │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── README │ │ ├── Security │ │ │ └── Cryptography │ │ │ │ ├── AesCryptoServiceProvider.cs │ │ │ │ ├── AsymmetricAlgorithm.cs │ │ │ │ ├── Crypto.cs │ │ │ │ ├── DSACryptoServiceProvider.cs │ │ │ │ ├── ECDiffieHellmanCryptoServiceProvider.cs │ │ │ │ ├── ECDsaCryptoServiceProvider.cs │ │ │ │ ├── HashAlgorithm.cs │ │ │ │ ├── KeyedHashAlgorithm.cs │ │ │ │ ├── RNGCryptoServiceProvider.cs │ │ │ │ ├── RSACryptoServiceProvider.cs │ │ │ │ ├── SymmetricAlgorithm.cs │ │ │ │ ├── TripleDESCryptoServiceProvider.cs │ │ │ │ └── X509Certificates │ │ │ │ ├── X509Certificate2.cs │ │ │ │ ├── X509Certificate2Collection.cs │ │ │ │ └── X509Store.cs │ │ ├── System.FTP.csproj │ │ ├── System.HTTP.csproj │ │ ├── System.Security.csproj │ │ ├── System.csproj │ │ ├── System │ │ │ └── Net │ │ │ │ ├── DNS.cs │ │ │ │ ├── EndPoint.cs │ │ │ │ ├── IPAddress.cs │ │ │ │ ├── IPEndPoint.cs │ │ │ │ ├── IPHostEntry.cs │ │ │ │ ├── Security │ │ │ │ ├── NetSecurity.csproj │ │ │ │ └── SslStream.cs │ │ │ │ ├── SocketAddress.cs │ │ │ │ ├── SocketException.cs │ │ │ │ └── Sockets │ │ │ │ ├── AddressFamily.cs │ │ │ │ ├── NetworkStream.cs │ │ │ │ ├── ProtocolFamily.cs │ │ │ │ ├── ProtocolType.cs │ │ │ │ ├── SelectMode.cs │ │ │ │ ├── Socket.cs │ │ │ │ ├── SocketErrors.cs │ │ │ │ ├── SocketFlags.cs │ │ │ │ ├── SocketOptionLevel.cs │ │ │ │ ├── SocketOptionName.cs │ │ │ │ └── SocketType.cs │ │ ├── Xml.csproj │ │ └── Xml │ │ │ ├── ReadState.cs │ │ │ ├── XmlException.cs │ │ │ ├── XmlNameTable.cs │ │ │ ├── XmlNodeType.cs │ │ │ ├── XmlReader.cs │ │ │ ├── XmlReaderSettings.cs │ │ │ ├── XmlSpace.cs │ │ │ └── XmlWriter.cs │ ├── Update │ │ ├── FirmwareUpdate.cs │ │ ├── MFAssemblyUpdate.cs │ │ ├── MFKeyUpdate.cs │ │ ├── MFUpdate.cs │ │ ├── MFUpdate.csproj │ │ └── MFUpdatePkt.cs │ ├── Windows │ │ └── Devices │ │ │ ├── Adc │ │ │ ├── AdcChannel.cs │ │ │ ├── AdcController.cs │ │ │ ├── AdcEnums.cs │ │ │ └── AdcProvider.cs │ │ │ ├── Devices.csproj │ │ │ ├── Enumeration │ │ │ └── DeviceInformation.cs │ │ │ ├── Gpio │ │ │ ├── GpioController.cs │ │ │ ├── GpioEnums.cs │ │ │ ├── GpioPin.cs │ │ │ ├── GpioPinEventListener.cs │ │ │ └── GpioPinValueChangedEventArgs.cs │ │ │ ├── I2c │ │ │ ├── I2cConnectionSettings.cs │ │ │ ├── I2cDevice.cs │ │ │ └── I2cEnums.cs │ │ │ ├── Pwm │ │ │ ├── PwmController.cs │ │ │ ├── PwmEnums.cs │ │ │ ├── PwmPin.cs │ │ │ └── PwmProvider.cs │ │ │ └── Spi │ │ │ ├── SpiBusInfo.cs │ │ │ ├── SpiConnectionSettings.cs │ │ │ ├── SpiDevice.cs │ │ │ └── SpiEnums.cs │ ├── Xml │ │ ├── System.Xml.csproj │ │ └── System │ │ │ └── Xml │ │ │ ├── BufferBuilder.cs │ │ │ ├── ConformanceLevel.cs │ │ │ ├── EntityHandling.cs │ │ │ ├── IXmlLineInfo.cs │ │ │ ├── IncrementalReadDecoders.cs │ │ │ ├── LineInfo.cs │ │ │ ├── NameTable.cs │ │ │ ├── NewLineHandling.cs │ │ │ ├── ReadState.cs │ │ │ ├── Ref.cs │ │ │ ├── Res.cs │ │ │ ├── StringUtil.cs │ │ │ ├── ValidateNames.cs │ │ │ ├── ValidationType.cs │ │ │ ├── WhiteSpaceHandling.cs │ │ │ ├── XmlCharType.cs │ │ │ ├── XmlException.cs │ │ │ ├── XmlNameTable.cs │ │ │ ├── XmlNamespace.cs │ │ │ ├── XmlNodeType.cs │ │ │ ├── XmlReader.cs │ │ │ ├── XmlReaderSettings.cs │ │ │ ├── XmlSpace.cs │ │ │ ├── XmlTextReader.cs │ │ │ ├── XmlWrappingReader.cs │ │ │ └── XmlWriter.cs │ └── build.dirproj ├── Debugger │ ├── AbortHandler.cs │ ├── ArmDisassembler.cs │ ├── AsyncStreams │ │ ├── AsyncFileStream.cs │ │ ├── AsyncFileStream_AsyncResult.cs │ │ ├── AsyncNetworkStream.cs │ │ ├── AsyncSerialStream.cs │ │ ├── AsyncUsbStream.cs │ │ ├── GenericAsyncStream.cs │ │ ├── UsbStream.cs │ │ └── WinUsbStream.cs │ ├── BinaryFormatter.cs │ ├── BitStream.cs │ ├── CLRCapabilities.cs │ ├── CRC.cs │ ├── ClassDiagram1.cd │ ├── CommandLineBuilder.cs │ ├── Debugger.csproj │ ├── Debugger.ruleset │ ├── DebuggerEventSource.cs │ ├── Emulator.cs │ ├── EmulatorDiscovery.cs │ ├── EndPoint.cs │ ├── Message.cs │ ├── Messaging │ │ └── RemotedException.cs │ ├── NativeMethods.cs │ ├── PlatformInfo.cs │ ├── PortDefinitions │ │ ├── PortDefinition.cs │ │ ├── PortDefinition_Emulator.cs │ │ ├── PortDefinition_Serial.cs │ │ ├── PortDefinition_Tcp.cs │ │ ├── PortDefinition_Usb.cs │ │ └── PortDefinition_WinUsb.cs │ ├── RegistryAccess.cs │ ├── Runtime │ │ ├── ReflectionDefinition.cs │ │ ├── RunTimeValue.cs │ │ ├── RuntimeValue_Array.cs │ │ ├── RuntimeValue_ByRef.cs │ │ ├── RuntimeValue_Class.cs │ │ ├── RuntimeValue_Indirect.cs │ │ ├── RuntimeValue_Internal.cs │ │ ├── RuntimeValue_Object.cs │ │ ├── RuntimeValue_Primitive.cs │ │ ├── RuntimeValue_Reflection.cs │ │ ├── RuntimeValue_String.cs │ │ └── RuntimeValue_ValueType.cs │ ├── SRecord.cs │ ├── SymDef.cs │ ├── UsbDeviceDiscovery.cs │ ├── UsbDevicePortNameEqualityComparer.cs │ ├── WinUsb │ │ ├── AssemblyInfo.cs │ │ ├── DeviceManagement.cs │ │ ├── DeviceManagementApi.cs │ │ ├── NativeMethods.cs │ │ ├── WinUsb.csproj │ │ ├── WinUsbDevice.cs │ │ ├── WinUsbDeviceApi.cs │ │ └── readme.txt │ ├── WireProtocol │ │ ├── Controller.cs │ │ ├── Converter.cs │ │ ├── Engine.cs │ │ ├── FifoBuffer.cs │ │ ├── IncomingMessage.cs │ │ ├── Interfaces.cs │ │ ├── MessageBase.cs │ │ ├── MessageRaw.cs │ │ ├── MessageReassembler.cs │ │ ├── OutgoingMessage.cs │ │ ├── ReleaseInfo.cs │ │ └── WireProtocol.cs │ └── portBooter.cs ├── Features │ ├── A025DL02_Config_HAL.libcatproj │ ├── Analog_DA_HAL.libcatproj │ ├── Analog_HAL.libcatproj │ ├── AsyncProc_PAL.libcatproj │ ├── Backlight.featureproj │ ├── Backlight_GPIO_config_HAL.libcatproj │ ├── Backlight_HAL.libcatproj │ ├── Backlight_SPI_config_HAL.libcatproj │ ├── Battery.featureproj │ ├── BatteryCharger_HAL.libcatproj │ ├── BatteryMeasurement_HAL.libcatproj │ ├── BatteryModel_HAL.libcatproj │ ├── BlockStorage.featureproj │ ├── BlockStorageAddDevices_HAL.libcatproj │ ├── BlockStorageConfig_HAL.libcatproj │ ├── BlockStorage_HAL.libcatproj │ ├── BlockStorage_PAL.libcatproj │ ├── Bootstrap_HAL.libcatproj │ ├── Buttons_PAL.libcatproj │ ├── CMU_HAL.libcatproj │ ├── COM_PAL.libcatproj │ ├── Cache_HAL.libcatproj │ ├── Config_PAL.libcatproj │ ├── Core.featureproj │ ├── Crypto.featureproj │ ├── Crypto.libcatproj │ ├── CryptoConfig_PAL.libcatproj │ ├── DAConverter_HAL.libcatproj │ ├── DMA_HAL.libcatproj │ ├── DataStorage.featureproj │ ├── Debugger.featureproj │ ├── Debugger_CLR.libcatproj │ ├── Debugger_flavor_CLR.libcatproj │ ├── Diagnostics.featureproj │ ├── Diagnostics_CLR.libcatproj │ ├── Diagnostics_PAL.libcatproj │ ├── Display_Font_HAL.libcatproj │ ├── EBIU_HAL.libcatproj │ ├── ENC28J60_Config_HAL.libcatproj │ ├── ENC28J60_Config_LWIP_HAL.libcatproj │ ├── EthernetDriver_HAL.libcatproj │ ├── EthernetLoopback_HAL.libcatproj │ ├── Events_PAL.libcatproj │ ├── FileSystem.featureproj │ ├── FileSystem_Config_PAL.libcatproj │ ├── FileSystem_HAL.libcatproj │ ├── FileSystem_PAL.libcatproj │ ├── GPIO_HAL.libcatproj │ ├── Gesture.featureproj │ ├── Gesture_PAL.libcatproj │ ├── GlobalLock_HAL.libcatproj │ ├── Graphics.featureproj │ ├── Graphics_BMP_CLR.libcatproj │ ├── Graphics_CLR.libcatproj │ ├── Graphics_Gif_CLR.libcatproj │ ├── Graphics_JPG_CLR.libcatproj │ ├── Graphics_PAL.libcatproj │ ├── HTTP.featureproj │ ├── HTTP_lwip_os.featureproj │ ├── Hardware.featureproj │ ├── Hardware_CLR.libcatproj │ ├── HeapPersistence_CLR.libcatproj │ ├── Heap_PAL.libcatproj │ ├── I2C.featureproj │ ├── I2C_CLR.libcatproj │ ├── I2C_HAL.libcatproj │ ├── I2C_PAL.libcatproj │ ├── IO_PAL.libcatproj │ ├── Initialization_HAL.libcatproj │ ├── Ink.featureproj │ ├── Ink_PAL.libcatproj │ ├── InteropSample.featureproj │ ├── Interop_LPC24XX_DAC.featureproj │ ├── InterruptController_HAL.libcatproj │ ├── InterruptHandler.featureproj │ ├── InterruptHandler_CLR.libcatproj │ ├── LCDController_Config_HAL.libcatproj │ ├── LCDController_HAL.libcatproj │ ├── LCD_HAL.libcatproj │ ├── LPC22XX_Bootstrap_HAL.libcatproj │ ├── LPC24XX_Bootstrap_HAL.libcatproj │ ├── LWIP_SysArch.libcatproj │ ├── LargeBuffer_HAL.libcatproj │ ├── MFUpdate.featureproj │ ├── MFUpdate_Config_PAL.libcatproj │ ├── MFUpdate_PAL.libcatproj │ ├── MMU_HAL.libcatproj │ ├── Messaging_CLR.libcatproj │ ├── Microsoft_SPOT_InteropAPI.featureproj │ ├── Mp3Decoder.featureproj │ ├── NativeEventDispatcher.featureproj │ ├── NativeEventDispatcher_CLR.libcatproj │ ├── Network.featureproj │ ├── NetworkStack_PAL.libcatproj │ ├── Network_Config_HAL.libcatproj │ ├── Network_LWIP_OS.featureproj │ ├── OS.libcatproj │ ├── OneWire.featureproj │ ├── OneWire_PAL.libcatproj │ ├── PCU_HAL.libcatproj │ ├── PKCS11_Crypto_PAL.libcatproj │ ├── PKCS11_Storage_PAL.libcatproj │ ├── PWM.featureproj │ ├── PWM_HAL.libcatproj │ ├── PalEvent_PAL.libcatproj │ ├── PerformanceCounter_HAL.libcatproj │ ├── PiezoConfig_PAL.libcatproj │ ├── Piezo_PAL.libcatproj │ ├── Power_HAL.libcatproj │ ├── PreStackInit_HAL.libcatproj │ ├── RPC.featureproj │ ├── RPC_CLR.libcatproj │ ├── RTX_Config.libcatproj │ ├── SD.featureproj │ ├── SD_Config_HAL.libcatproj │ ├── SD_HAL.libcatproj │ ├── SPI.featureproj │ ├── SPI_HAL.libcatproj │ ├── SPOT_Graphics_CLR.libcatproj │ ├── SPOT_Hardware_CLR.libcatproj │ ├── SPOT_Hardware_OneWire_CLR.libcatproj │ ├── SPOT_Hardware_PWM_CLR.libcatproj │ ├── SPOT_Hardware_Serial_CLR.libcatproj │ ├── SPOT_Hardware_Usb_CLR.libcatproj │ ├── SPOT_IO_CLR.libcatproj │ ├── SPOT_Messaging_CLR.libcatproj │ ├── SPOT_Net_CLR.libcatproj │ ├── SPOT_Net_Security_CLR.libcatproj │ ├── SPOT_Serialization_CLR.libcatproj │ ├── SPOT_TimeService_CLR.libcatproj │ ├── SPOT_Touch_CLR.libcatproj │ ├── SSL.featureproj │ ├── SSL_Open_lwip_os.featureproj │ ├── SSL_PAL.libcatproj │ ├── SerialPort.featureproj │ ├── Serial_Port.featureproj │ ├── Serialization.featureproj │ ├── Serialization_CLR.libcatproj │ ├── SimpleHeap_Config_PAL.libcatproj │ ├── SimpleHeap_PAL.libcatproj │ ├── SimpleStorage.featureproj │ ├── SimpleStorage_PAL.libcatproj │ ├── SocketDriver_LWIP_PAL.libcatproj │ ├── Sockets_PAL.libcatproj │ ├── Sockets_Port.featureproj │ ├── Sockets_dhcp_PAL.libcatproj │ ├── Sockets_ssl_PAL.libcatproj │ ├── Sockets_tcp_PAL.libcatproj │ ├── Sockets_udp_PAL.libcatproj │ ├── StateDebounce_PAL.libcatproj │ ├── Stream.featureproj │ ├── Stream_CLR.libcatproj │ ├── TX09D71VM1CCA_Config_HAL.libcatproj │ ├── Thermistor_HAL.libcatproj │ ├── TimeService.featureproj │ ├── TimeService_HAL.libcatproj │ ├── TimeService_PAL.libcatproj │ ├── Time_HAL.libcatproj │ ├── Time_PAL.libcatproj │ ├── TinyCRT_PAL.libcatproj │ ├── TinyCore.featureproj │ ├── TinyHal_HAL.libcatproj │ ├── TouchPanel_HAL.libcatproj │ ├── TouchPanel_PAL.libcatproj │ ├── TouchScreen.featureproj │ ├── TouchScreen_Config_HAL.libcatproj │ ├── USART_HAL.libcatproj │ ├── USART_PAL.libcatproj │ ├── USB_Config_PAL.libcatproj │ ├── USB_HAL.libcatproj │ ├── USB_PAL.libcatproj │ ├── Usb.featureproj │ ├── Usb_Port.featureproj │ ├── VirtualKey_HAL.libcatproj │ ├── Watchdog_HAL.libcatproj │ ├── Watchdog_PAL.libcatproj │ ├── WearLeveling.featureproj │ ├── WearLeveling_HAL.libcatproj │ ├── Windows_Devices.featureproj │ ├── Windows_Devices.libcatproj │ ├── WireProtocol_support.libcatproj │ ├── XML.featureproj │ ├── XML_CLR.libcatproj │ ├── XML_core_CLR.libcatproj │ ├── XML_legacy.featureproj │ └── crc_support.libcatproj ├── IDE │ ├── Targets │ │ └── v4.4 │ │ │ ├── CSharp.targets │ │ │ ├── Device.targets │ │ │ ├── Emulator.targets │ │ │ ├── MicroFramework_v4_4.wixproj │ │ │ ├── Targets_v4_4.wixproj │ │ │ ├── Tasks.settings │ │ │ ├── Tasks.settings.shipping │ │ │ ├── VisualBasic.targets │ │ │ ├── WiXTargetsRegInclude.wxs │ │ │ ├── WixTargetsRegIncludeInner.wxs │ │ │ └── build.dirproj │ └── build.dirproj ├── PKCS11 │ ├── Certificate.cs │ ├── Decrypt.cs │ ├── Digest.cs │ ├── DualCrypto.cs │ ├── Encrypt.cs │ ├── ICryptoTransform.cs │ ├── Key.cs │ ├── Mechanism.cs │ ├── Object.cs │ ├── PKCS11.cs │ ├── Random.cs │ ├── SecurityPkcs11.csproj │ ├── Session.cs │ ├── Signing.cs │ └── SlotToken.cs ├── Subset_of_CorLib │ ├── SpotCorLib.csproj │ ├── SpotCorLib.sln │ └── System │ │ ├── AppDomain.cs │ │ ├── AppDomainUnloadedException.cs │ │ ├── ApplicationException.cs │ │ ├── ArgumentException.cs │ │ ├── ArgumentNullException.cs │ │ ├── ArgumentOutOfRangeException.cs │ │ ├── Array.cs │ │ ├── AssemblyInfo2.cs │ │ ├── AsyncCallback.cs │ │ ├── Attribute.cs │ │ ├── AttributeTargets.cs │ │ ├── AttributeUsageAttribute.cs │ │ ├── BitConverter.cs │ │ ├── Boolean.cs │ │ ├── Byte.cs │ │ ├── CLSCompliantAttribute.cs │ │ ├── Char.cs │ │ ├── Collections │ │ ├── ArrayList.cs │ │ ├── DictionaryEntry.cs │ │ ├── HashTable.cs │ │ ├── ICollection.cs │ │ ├── IComparer.cs │ │ ├── IDictionary.cs │ │ ├── IEnumerable.cs │ │ ├── IEnumerator.cs │ │ ├── IEqualityComparer.cs │ │ ├── IList.cs │ │ ├── Queue.cs │ │ └── stack.cs │ │ ├── ComponentModel │ │ └── EditorBrowsableAttribute.cs │ │ ├── Convert.cs │ │ ├── DBNull.cs │ │ ├── DateTime.cs │ │ ├── DayOfWeek.cs │ │ ├── Decimal.cs │ │ ├── Delegate.cs │ │ ├── Diagnostics │ │ ├── ConditionalAttribute.cs │ │ ├── Debugger.cs │ │ └── DebuggerAttributes.cs │ │ ├── Double.cs │ │ ├── Enum.cs │ │ ├── Exception.cs │ │ ├── FlagsAttribute.cs │ │ ├── GC.cs │ │ ├── Globalization │ │ ├── CultureInfo.cs │ │ ├── CultureTypes.cs │ │ ├── DateTimeFormat.cs │ │ ├── DateTimeFormatInfo.cs │ │ ├── DaylightTime.cs │ │ ├── NumberFormatInfo.cs │ │ └── Resources │ │ │ ├── CultureInfo.designer.cs │ │ │ ├── CultureInfo.en.resx │ │ │ └── CultureInfo.resx │ │ ├── Guid.cs │ │ ├── IAsyncResult.cs │ │ ├── ICloneable.cs │ │ ├── IComparable.cs │ │ ├── ICustomFormatter.cs │ │ ├── IDisposable.cs │ │ ├── IFormatProvider.cs │ │ ├── IFormattable.cs │ │ ├── IO │ │ ├── IOException.cs │ │ ├── SeekOrigin.cs │ │ └── Stream.cs │ │ ├── IndexOutOfRangeException.cs │ │ ├── Int16.cs │ │ ├── Int32.cs │ │ ├── Int64.cs │ │ ├── IntPtr.cs │ │ ├── InvalidCastException.cs │ │ ├── InvalidOperationException.cs │ │ ├── MarshalByRefObject.cs │ │ ├── Math.cs │ │ ├── MulticastDelegate.cs │ │ ├── NonSerializedAttribute.cs │ │ ├── NotImplementedException.cs │ │ ├── NotSupportedException.cs │ │ ├── NullReferenceException.cs │ │ ├── Number.cs │ │ ├── Object.cs │ │ ├── ObjectDisposedException.cs │ │ ├── ObsoleteAttribute.cs │ │ ├── OutOfMemoryException.cs │ │ ├── ParamArrayAttribute.cs │ │ ├── Reflection │ │ ├── Assembly.cs │ │ ├── AssemblyAttributes.cs │ │ ├── AssemblyNameFlags.cs │ │ ├── AssemblyReflectionAttributes.cs │ │ ├── Binder.cs │ │ ├── BindingFlags.cs │ │ ├── ConstructorInfo.cs │ │ ├── DefaultMemberAttribute.cs │ │ ├── FieldInfo.cs │ │ ├── FieldReflectionAttributes.cs │ │ ├── IReflect.cs │ │ ├── MemberInfo.cs │ │ ├── MemberTypes.cs │ │ ├── MethodBase.cs │ │ ├── MethodImplAttributes.cs │ │ ├── MethodInfo.cs │ │ ├── ParameterModifier.cs │ │ ├── PropertyInfo.cs │ │ ├── RuntimeConstructorInfo.cs │ │ ├── RuntimeFieldInfo.cs │ │ └── RuntimeMethodInfo.cs │ │ ├── Resources │ │ └── ResourceManager.cs │ │ ├── Runtime │ │ ├── CompilerServices │ │ │ ├── AccessedThroughPropertyAttribute.cs │ │ │ ├── AssemblyAttributesGoHere.cs │ │ │ ├── CallingConvention.cs │ │ │ ├── CompilationRelaxations.cs │ │ │ ├── CompilerGlobalScopeAttribute.cs │ │ │ ├── CustomConstantAttribute.cs │ │ │ ├── DateTimeConstantAttribute.cs │ │ │ ├── DecimalConstantAttribute.cs │ │ │ ├── DiscardableAttribute.cs │ │ │ ├── ExtensionAttribute.cs │ │ │ ├── IDispatchConstantAttribute.cs │ │ │ ├── IUnknownConstantAttribute.cs │ │ │ ├── IndexerNameAttribute.cs │ │ │ ├── InternalsVisibleToAttribute.cs │ │ │ ├── IsVolatile.cs │ │ │ ├── MethodImplAttribute.cs │ │ │ ├── RequiredAttributeAttribute.cs │ │ │ └── RuntimeHelpers.cs │ │ ├── InteropServices │ │ │ ├── Attributes.cs │ │ │ ├── CharSet.cs │ │ │ └── LayoutKind.cs │ │ └── Remoting │ │ │ ├── RemotingServices.cs │ │ │ └── __TransparentProxy.cs │ │ ├── RuntimeArgumentHandle.cs │ │ ├── RuntimeFieldHandle.cs │ │ ├── RuntimeMethodHandle.cs │ │ ├── RuntimeType.cs │ │ ├── RuntimeTypeHandle.cs │ │ ├── SByte.cs │ │ ├── SerializableAttribute.cs │ │ ├── Single.cs │ │ ├── String.cs │ │ ├── SystemException.cs │ │ ├── TargetFrameworkAttribute.cs │ │ ├── Text │ │ ├── Decoder.cs │ │ ├── Encoding.cs │ │ ├── StringBuilder.cs │ │ ├── UTF8Decoder.cs │ │ └── UTF8Encoding.cs │ │ ├── ThreadAttributes.cs │ │ ├── Threading │ │ ├── AutoResetEvent.cs │ │ ├── Interlocked.cs │ │ ├── ManualResetEvent.cs │ │ ├── Monitor.cs │ │ ├── Thread.cs │ │ ├── ThreadAbortException.cs │ │ ├── ThreadPriority.cs │ │ ├── ThreadStart.cs │ │ ├── ThreadState.cs │ │ ├── Timeout.cs │ │ ├── Timer.cs │ │ └── WaitHandle.cs │ │ ├── TimeSpan.cs │ │ ├── TimeZone.cs │ │ ├── Type.cs │ │ ├── TypeCode.cs │ │ ├── TypedReference.cs │ │ ├── UInt16.cs │ │ ├── UInt32.cs │ │ ├── UInt64.cs │ │ ├── UIntPtr.cs │ │ ├── ValueType.cs │ │ ├── Version.cs │ │ ├── Void.cs │ │ ├── WeakReference.cs │ │ └── random.cs ├── Subset_of_VisualBasic │ ├── AssemblyInfo.vb │ ├── CopyBinaries.proj │ ├── Microsoft.VisualBasic.vb │ ├── NoVBRuntimeRef.rsp │ ├── SpotVBasic.vbproj │ ├── _Version.vb.template │ ├── lib │ │ └── cst │ │ │ ├── Microsoft.VisualBasic.dump │ │ │ └── Microsoft.VisualBasic.wxs │ └── readme.txt ├── TinyCore │ ├── Ink.csproj │ ├── Ink │ │ └── InkCanvas.cs │ ├── Input │ │ ├── ButtonDevice.cs │ │ ├── ButtonEventArgs.cs │ │ ├── ButtonEventHandler.cs │ │ ├── ButtonState.cs │ │ ├── Buttons.cs │ │ ├── FocusChangedEventArgs.cs │ │ ├── FocusChangedEventHandler.cs │ │ ├── GenericDevice.cs │ │ ├── InputDevice.cs │ │ ├── InputEventArgs.cs │ │ ├── InputEventHandler.cs │ │ ├── InputManager.cs │ │ ├── InputProviderSite.cs │ │ ├── InputReport.cs │ │ ├── InputReportEventArgs.cs │ │ ├── InputReportEventHandler.cs │ │ ├── NotifyInputEventArgs.cs │ │ ├── PreProcessInputEventArgs.cs │ │ ├── PreProcessInputEventHandler.cs │ │ ├── ProcessInputEventArgs.cs │ │ ├── ProcessInputEventHandler.cs │ │ ├── RawButtonInputReport.cs │ │ ├── RawGenericInputReport.cs │ │ ├── RawTouchInputReport.cs │ │ ├── StagingAreaInputItem.cs │ │ ├── Touch.cs │ │ └── TouchDevice.cs │ ├── Presentation │ │ ├── Controls │ │ │ ├── Border.cs │ │ │ ├── Canvas.cs │ │ │ ├── ContentControl.cs │ │ │ ├── Control.cs │ │ │ ├── Image.cs │ │ │ ├── ListBox.cs │ │ │ ├── ListBoxItem.cs │ │ │ ├── ListBoxItemCollection.cs │ │ │ ├── Orientation.cs │ │ │ ├── Panel.cs │ │ │ ├── ScrollChangedEventArgs.cs │ │ │ ├── ScrollChangedEventHandler.cs │ │ │ ├── ScrollViewer.cs │ │ │ ├── ScrollingStyle.cs │ │ │ ├── SelectionChangedEventArgs.cs │ │ │ ├── SelectionChangedEventHandler.cs │ │ │ ├── StackPanel.cs │ │ │ ├── Text.cs │ │ │ ├── TextFlow.cs │ │ │ ├── TextRun.cs │ │ │ └── TextRunCollection.cs │ │ ├── HorizontalAlignment.cs │ │ ├── LayoutManager.cs │ │ ├── Media │ │ │ ├── Brush.cs │ │ │ ├── Colors.cs │ │ │ ├── Constants.cs │ │ │ ├── DrawingContext.cs │ │ │ ├── ImageBrush.cs │ │ │ ├── LinearGradientBrush.cs │ │ │ ├── MediaContext.cs │ │ │ ├── Pen.cs │ │ │ ├── SolidColorBrush.cs │ │ │ ├── Stretch.cs │ │ │ ├── TextAlignment.cs │ │ │ └── TextTrimming.cs │ │ ├── PresentationSource.cs │ │ ├── Shapes │ │ │ ├── Ellipse.cs │ │ │ ├── Line.cs │ │ │ ├── Polygon.cs │ │ │ ├── Rectangle.cs │ │ │ └── Shape.cs │ │ ├── SizeToContent.cs │ │ ├── SystemMetrics.cs │ │ ├── UIElement.cs │ │ ├── UIElementCollection.cs │ │ ├── VerticalAlignment.cs │ │ ├── Visibility.cs │ │ ├── Window.cs │ │ └── WindowManager.cs │ ├── System │ │ ├── Application.cs │ │ ├── EventHandler.cs │ │ ├── EventRoute.cs │ │ ├── PropertyChangedEventArgs.cs │ │ ├── PropertyChangedEventHandler.cs │ │ ├── RouteItem.cs │ │ ├── RoutedEvent.cs │ │ ├── RoutedEventArgs.cs │ │ ├── RoutedEventHandlerInfo.cs │ │ ├── RoutingStrategy.cs │ │ ├── Threading │ │ │ ├── Dispatcher.cs │ │ │ ├── DispatcherFrame.cs │ │ │ ├── DispatcherObject.cs │ │ │ ├── DispatcherOperation.cs │ │ │ ├── DispatcherOperationStatus.cs │ │ │ └── DispatcherTimer.cs │ │ └── WindowCollection.cs │ ├── TinyCore.cd │ └── TinyCore.csproj ├── Tools │ ├── AbortHandlerClient │ │ ├── AbortHandlerClient.csproj │ │ ├── App.ico │ │ ├── FormAbortHandler.cs │ │ ├── FormAbortHandler.resx │ │ ├── MemoryControl.cs │ │ ├── MemoryControl.resx │ │ ├── MemoryRange.cs │ │ ├── MemoryRange.resx │ │ ├── Settings.cs │ │ ├── Settings.resx │ │ └── Support.cs │ ├── BBCoverWrapper │ │ └── Main.cs │ ├── BuildTasks.sln │ ├── BuildTasks │ │ ├── BuildTaskResources.Designer.cs │ │ ├── BuildTaskResources.resx │ │ ├── BuildTasks.csproj │ │ ├── CreateInteropFeatureProj.cs │ │ ├── CreateLibManifest.cs │ │ ├── CsAssemblyInfoTemplate.txt │ │ ├── GCCLinkerScript.cs │ │ ├── GenerateAssemblyInfoFile.cs │ │ ├── GenerateReleaseInfo.cs │ │ ├── GenerateResource.cs │ │ ├── GetDeviceFrameworkPath.cs │ │ ├── MetaDataProcessor.cs │ │ ├── ProcessScatterFile.cs │ │ ├── RVDSLinkerScript.cs │ │ ├── RegisterEmulator.cs │ │ ├── ResolveRuntimeDependencies.cs │ │ ├── ResourceAssemblyInfoTemplate.txt │ │ ├── ScatterFile.cs │ │ ├── SetEnvironmentVariable.cs │ │ └── VisualBasicAssemblyInfoTemplate.txt │ ├── BuildTasksInternal │ │ ├── BBCover.cs │ │ ├── BuildSigner │ │ │ ├── BuildSigner.cs │ │ │ ├── BuildSigner.csproj │ │ │ ├── BuildSignerSpotBuild.csproj │ │ │ ├── NotificationDialog.Designer.cs │ │ │ ├── NotificationDialog.cs │ │ │ └── NotificationDialog.resx │ │ ├── BuildTaskResource.Designer.cs │ │ ├── BuildTaskResource.resx │ │ ├── BuildTaskUtility.cs │ │ ├── CharacterReplace.cs │ │ ├── CommandRunner.cs │ │ ├── CompressSample.cs │ │ ├── CreateAssemblyFragment.cs │ │ ├── CreatePseudoInstallScript.cs │ │ ├── CreateSymbolRequest.cs │ │ ├── CreateZip.cs │ │ ├── DirectorySearch.cs │ │ ├── FindWixObjects.cs │ │ ├── GenerateCLRDefines.cs │ │ ├── GenerateFrameworkList.cs │ │ ├── GenerateVSTemplate.cs │ │ ├── GetGuid.cs │ │ ├── GetOrSetXmlAttribute.cs │ │ ├── GetProjectFiles.cs │ │ ├── InternalBuildTasks.csproj │ │ ├── ProjectEx.cs │ │ ├── RegexReplace.cs │ │ ├── ResourceConverter.cs │ │ ├── SignMSI.cs │ │ ├── SignMSIAssemblies.cs │ │ ├── Solution.cs │ │ ├── SolutionTemplate.txt │ │ ├── SubmitSymbols.cs │ │ ├── TargetLock.cs │ │ ├── TransmorgificationUtilities.cs │ │ ├── TransmorgifyProject.cs │ │ ├── TransmorgifyTemplateFiles.cs │ │ ├── depot2sdk.csproj.xslt │ │ └── depot2sdk.vbproj.xslt │ ├── BuildTasksNativeBuild │ │ ├── Compile.cs │ │ ├── MakeVCProject.cs │ │ ├── NativeBuildTasks.csproj │ │ └── link.cs │ ├── ConnectionManager │ │ ├── ConnectionManager.cs │ │ └── Gateway.cs │ ├── ConnectionManagerHost │ │ └── ConnectionManagerHost.cs │ ├── CreateCLRDefines.proj │ ├── CreateSymdef │ │ ├── CreateSymdef.csproj │ │ └── Program.cs │ ├── DumpTypeHashes │ │ ├── App.ico │ │ ├── DumpTypeHashes.cs │ │ └── DumpTypeHashes.csproj │ ├── Emulator │ │ ├── Battery.cs │ │ ├── BlockStorage.cs │ │ ├── Com.cs │ │ ├── ConfigurationEngine.cs │ │ ├── Digest.cs │ │ ├── Emulator.cs │ │ ├── Emulator.csproj │ │ ├── Emulator.ruleset │ │ ├── Emulator.wxs │ │ ├── EmulatorComponent.cs │ │ ├── EmulatorComponentCollection.cs │ │ ├── Encryption.cs │ │ ├── Events.cs │ │ ├── FS.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Gpio.cs │ │ ├── Hal.cs │ │ ├── I2c.cs │ │ ├── Keys.cs │ │ ├── Lcd.cs │ │ ├── Memory.cs │ │ ├── NamedPipe.cs │ │ ├── ProtectedDataStorage.cs │ │ ├── Random.cs │ │ ├── Serial.cs │ │ ├── Session.cs │ │ ├── Signature.cs │ │ ├── Sockets.cs │ │ ├── Spi.cs │ │ ├── Ssl.cs │ │ ├── Time.cs │ │ ├── TouchPanel.cs │ │ ├── UpdateBackupProvider.cs │ │ ├── UpdateProvider.cs │ │ ├── UpdateStorageProvider.cs │ │ ├── UpdateValidationProvider.cs │ │ ├── Usb.cs │ │ ├── Utility.cs │ │ └── Watchdog.cs │ ├── Emulators │ │ ├── CommandLineEmulator │ │ │ ├── App.config │ │ │ ├── CommandLineEmulator.cs │ │ │ └── CommandLineEmulator.csproj │ │ └── build.dirproj │ ├── MFDeploy │ │ ├── Application │ │ │ ├── ArgumentParser.cs │ │ │ ├── DeploymentStatusDialog.Designer.cs │ │ │ ├── DeploymentStatusDialog.cs │ │ │ ├── DeploymentStatusDialog.resx │ │ │ ├── EraseDialog.Designer.cs │ │ │ ├── EraseDialog.cs │ │ │ ├── EraseDialog.resx │ │ │ ├── MFAboutBox.Designer.cs │ │ │ ├── MFAboutBox.cs │ │ │ ├── MFAboutBox.resx │ │ │ ├── MFAppDeployDialog.Designer.cs │ │ │ ├── MFAppDeployDialog.cs │ │ │ ├── MFAppDeployDialog.resx │ │ │ ├── MFConfigNetworkDialog.Designer.cs │ │ │ ├── MFConfigNetworkDialog.cs │ │ │ ├── MFConfigNetworkDialog.resx │ │ │ ├── MFConfigUsbDialog.Designer.cs │ │ │ ├── MFConfigUsbDialog.cs │ │ │ ├── MFConfigUsbDialog.resx │ │ │ ├── MFDebugTasks.cs │ │ │ ├── MFDeploy.csproj │ │ │ ├── MFDeployForm.Designer.cs │ │ │ ├── MFDeployForm.cs │ │ │ ├── MFDeployForm.resx │ │ │ ├── MFDeployIcon.ico │ │ │ ├── NetMFDeviceCert.pfx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── UsbXmlConfig.cs │ │ │ ├── app.config │ │ │ ├── netmflogo.bmp │ │ │ ├── netmflogo.png │ │ │ └── usb_device_schema │ │ │ │ ├── Debug Mouse.xml │ │ │ │ ├── UsbClientConfig.xsd │ │ │ │ └── UsbStandard.xml │ │ ├── Library │ │ │ ├── MFAppDeploy.cs │ │ │ ├── MFCRC.cs │ │ │ ├── MFConfigHelper.cs │ │ │ ├── MFCryptoWrapper.cs │ │ │ ├── MFDeploy.cs │ │ │ ├── MFDeployEngine.csproj │ │ │ ├── MFDevice.cs │ │ │ ├── MFExceptions.cs │ │ │ ├── MFKeyConfig.cs │ │ │ ├── MFNetworkConfig.cs │ │ │ ├── MFPlugInExceptions.cs │ │ │ ├── MFPlugin.cs │ │ │ ├── MFPortDefinition.cs │ │ │ ├── MFSslKeyConfig.cs │ │ │ ├── MFUsbConfig.cs │ │ │ └── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ ├── MFDeploy.sln │ │ ├── MFDeployCom │ │ │ ├── MFDeployCom.csproj │ │ │ ├── Program.cs │ │ │ └── app.config │ │ └── build.dirproj │ ├── MFProfiler │ │ ├── App.config │ │ ├── CLRProfiler │ │ │ ├── AgeHistogram.cs │ │ │ ├── AgeHistogram.resx │ │ │ ├── AllocationDiff.cs │ │ │ ├── BitReader.cs │ │ │ ├── BitWriter.cs │ │ │ ├── CallTreeForm.cs │ │ │ ├── CallTreeForm.resx │ │ │ ├── CommentRangeForm.cs │ │ │ ├── CommentRangeForm.resx │ │ │ ├── DiffCallTreeForm.cs │ │ │ ├── DiffCallTreeForm.resx │ │ │ ├── DiffDataNode.cs │ │ │ ├── DiffTreeListView.cs │ │ │ ├── DiffTreeListView.resx │ │ │ ├── Edge.cs │ │ │ ├── FilterForm.cs │ │ │ ├── FilterForm.resx │ │ │ ├── FindRoutineForm.cs │ │ │ ├── FindRoutineForm.resx │ │ │ ├── FunctionFilter.cs │ │ │ ├── FunctionFilter.resx │ │ │ ├── FunctionFind.cs │ │ │ ├── FunctionFind.resx │ │ │ ├── Graph.cs │ │ │ ├── GraphBase.cs │ │ │ ├── GraphViewForm.cs │ │ │ ├── GraphViewForm.resx │ │ │ ├── HistogramViewForm.cs │ │ │ ├── HistogramViewForm.resx │ │ │ ├── KillProcessForm.cs │ │ │ ├── KillProcessForm.resx │ │ │ ├── ListViewer.cs │ │ │ ├── ListViewer.resx │ │ │ ├── LogBase.cs │ │ │ ├── MainForm.cs │ │ │ ├── MainForm.resx │ │ │ ├── NamedManualResetEvent.cs │ │ │ ├── ObjectGraph.cs │ │ │ ├── PlacedToolTip.cs │ │ │ ├── PlacedToolTip.resx │ │ │ ├── ProfileServiceForm.cs │ │ │ ├── ProfileServiceForm.resx │ │ │ ├── ProgressForm.cs │ │ │ ├── ProgressForm.resx │ │ │ ├── ReadNewLog.cs │ │ │ ├── Readers.cs │ │ │ ├── RegisterDLL.cs │ │ │ ├── ReportForm.cs │ │ │ ├── ReportForm.resx │ │ │ ├── Reports.cs │ │ │ ├── SaveFileForm.cs │ │ │ ├── SaveFileForm.resx │ │ │ ├── SelectColumns.cs │ │ │ ├── SelectColumns.resx │ │ │ ├── SetParameterForm.cs │ │ │ ├── SetParameterForm.resx │ │ │ ├── SortAndHighlightSelector.cs │ │ │ ├── SortAndHighlightSelector.resx │ │ │ ├── SummaryForm.cs │ │ │ ├── SummaryForm.resx │ │ │ ├── TimeLineViewForm.cs │ │ │ ├── TimeLineViewForm.resx │ │ │ ├── TreeListView.cs │ │ │ ├── TreeListView.resx │ │ │ ├── TreeNodeBase.resx │ │ │ ├── Vertex.cs │ │ │ ├── ViewByAddressForm.cs │ │ │ ├── ViewByAddressForm.resx │ │ │ ├── ViewCommentsForm.cs │ │ │ ├── ViewCommentsForm.resx │ │ │ ├── ViewFilter.cs │ │ │ ├── ViewFilter.resx │ │ │ ├── WaitingForConnectionForm.cs │ │ │ └── WaitingForConnectionForm.resx │ │ ├── EmulatorLauncher.cs │ │ ├── Exporter_CLRProfiler.cs │ │ ├── Exporter_OffProf.cs │ │ ├── MFDeviceSelectorComboBox.cs │ │ ├── MFProfiler.csproj │ │ ├── MFProfilerIcon.ico │ │ ├── MFTransportTypeComboBox.cs │ │ ├── Profiler.cs │ │ ├── ProfilerLauncherForm.cs │ │ ├── ProfilerLauncherForm.designer.cs │ │ ├── ProfilerLauncherForm.resx │ │ ├── ProfilerPackets.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── Settings.cs │ ├── NativeProfilerFilter │ │ ├── NativeProfileMap.txt │ │ ├── NativeProfilerFilter.cs │ │ ├── NativeProfilerFilter.csproj │ │ ├── ReadMe.txt │ │ └── SearchFiles.cs │ ├── NativeProfilerViewer │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── NativeProfilerLib.cs │ │ ├── NativeProfilerViewer.csproj │ │ ├── NativeProfilerViewer.sln │ │ ├── Program.cs │ │ ├── ProgressBarControl.Designer.cs │ │ ├── ProgressBarControl.cs │ │ ├── ProgressBarControl.resx │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Settings.Designer.cs │ │ └── app.config │ ├── PortBooterClient │ │ ├── App.ico │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ ├── app.config │ │ ├── portBooterClient.cs │ │ ├── portBooterClient.csproj │ │ └── portBooterClient.resx │ ├── PortBooterHost │ │ ├── App.ico │ │ ├── Main.cs │ │ └── portBooterHost.csproj │ ├── SRECUtility │ │ ├── SrecUtility.cs │ │ ├── SrecUtility.csproj │ │ └── SrecUtility.sln │ ├── ScatterFileProcessor │ │ ├── App.ico │ │ ├── ScatterFileProcessor.csproj │ │ └── main.cs │ ├── SerialDump │ │ ├── App.ico │ │ ├── Main.cs │ │ └── SerialDump.csproj │ ├── WiXLib │ │ ├── Component.cs │ │ ├── DirectoryRef.cs │ │ ├── File.cs │ │ ├── Fragment.cs │ │ ├── Shortcut.cs │ │ ├── WiXElement.cs │ │ ├── WixLib.csproj │ │ └── WixLibSpotBuild.csproj │ ├── build.dirproj │ └── buildTasks.dirproj ├── UnitTest │ ├── AppDomain │ │ ├── AppDomain.cs │ │ ├── AppDomain.csproj │ │ └── SimpleAppDomain.csproj │ ├── Helper │ │ ├── Helper.cs │ │ └── Helper.csproj │ ├── SerialPort │ │ └── SerialPortXonXoff │ │ │ ├── SerialPortXonXoff.csproj │ │ │ └── UnitTest.cs │ ├── Sockets │ │ ├── SocketClient │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── SocketClient.csproj │ │ │ └── SocketClient.sln │ │ └── SocketDevice │ │ │ ├── Main.cs │ │ │ ├── SocketPingPong.csproj │ │ │ └── SocketPingPong.sln │ ├── UnitTest.targets │ ├── build.dirproj │ └── hardwareProvider │ │ ├── HardwareProviderTest.cs │ │ └── HardwareProviderTest.csproj ├── build.dirproj └── key.snk ├── Install-BinTools.ps1 ├── Install-CMSIS.ps1 ├── License.txt ├── PK.proj ├── Product ├── AllSDK │ ├── ItemTemplates │ │ ├── CSharp │ │ │ ├── AssemblyInfo │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── AssemblyInfo.vstemplate │ │ │ │ ├── AssemblyInfo.vstproj │ │ │ │ ├── AssemblyInfo.wxs │ │ │ │ └── AssemblyInfoTemplateProject.csproj │ │ │ ├── Class │ │ │ │ ├── Class.cs │ │ │ │ ├── Class.vstemplate │ │ │ │ ├── Class.vstproj │ │ │ │ ├── Class.wxs │ │ │ │ └── ClassTemplateProject.csproj │ │ │ └── build.dirproj │ │ ├── VisualBasic │ │ │ ├── Class │ │ │ │ ├── Class.vb │ │ │ │ ├── Class.vstemplate │ │ │ │ ├── Class.wxs │ │ │ │ ├── VBClassTemplateProject.csproj │ │ │ │ └── VbClass.vstproj │ │ │ └── build.dirproj │ │ └── build.dirproj │ ├── ProjectTemplates │ │ ├── CSharp │ │ │ ├── EmulatorTemplate │ │ │ │ ├── Emulator.config │ │ │ │ ├── EmulatorTemplateProject.csproj │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── MFEmulator.csproj │ │ │ │ ├── MFEmulator.vstproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Project.ico │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ └── Template.wxs │ │ │ ├── ExeTemplate │ │ │ │ ├── ExeTemplateProject.csproj │ │ │ │ ├── MFConsoleApplication.csproj │ │ │ │ ├── MFConsoleApplication.vstemplate │ │ │ │ ├── MFConsoleApplication.vstproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Project.ico │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ └── Template.wxs │ │ │ ├── LibTemplate │ │ │ │ ├── Class1.cs │ │ │ │ ├── LibTemplateProject.csproj │ │ │ │ ├── MFClassLibrary.csproj │ │ │ │ ├── MFClassLibrary.vstemplate │ │ │ │ ├── MFClassLibrary.vstproj │ │ │ │ ├── Project.ico │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ └── Template.wxs │ │ │ ├── WinTemplate │ │ │ │ ├── GPIOButtonInputProvider.cs │ │ │ │ ├── MFWindowApplication.csproj │ │ │ │ ├── MFWindowApplication.vstemplate │ │ │ │ ├── MFWindowApplication.vstproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Project.ico │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Resources │ │ │ │ │ └── small.tinyfnt │ │ │ │ ├── Template.wxs │ │ │ │ └── WinTemplateProject.csproj │ │ │ └── build.dirproj │ │ ├── VB │ │ │ ├── EmulatorTemplate │ │ │ │ ├── App.config │ │ │ │ ├── Emulator.config │ │ │ │ ├── Form1.Designer.vb │ │ │ │ ├── Form1.vb │ │ │ │ ├── MFEmulator.vbproj │ │ │ │ ├── MFEmulator.vstproj │ │ │ │ ├── Module1.vb │ │ │ │ ├── My Project │ │ │ │ │ ├── Application.Designer.vb │ │ │ │ │ ├── Application.myapp │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.vb │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Project.ico │ │ │ │ ├── Template.wxs │ │ │ │ └── VBEmulatorTemplateProject.csproj │ │ │ ├── ExeTemplate │ │ │ │ ├── MFConsoleApplication.vbproj │ │ │ │ ├── MFConsoleApplication.vstemplate │ │ │ │ ├── MFConsoleApplication.vstproj │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ └── Resources │ │ │ │ │ │ └── small.tinyfnt │ │ │ │ ├── Program.vb │ │ │ │ ├── Project.ico │ │ │ │ ├── VBExeTemplateProject.csproj │ │ │ │ └── VBTemplate.wxs │ │ │ ├── LibTemplate │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ ├── Class1.vb │ │ │ │ ├── MFClassLibrary.vbproj │ │ │ │ ├── MFClassLibrary.vstemplate │ │ │ │ ├── MFClassLibrary.vstproj │ │ │ │ ├── Project.ico │ │ │ │ ├── VBLibTemplateProject.csproj │ │ │ │ └── VBTemplate.wxs │ │ │ ├── WinTemplate │ │ │ │ ├── GPIOButtonInputProvider.vb │ │ │ │ ├── MFWindowApplication.vbproj │ │ │ │ ├── MFWindowApplication.vstemplate │ │ │ │ ├── MFWindowApplication.vstproj │ │ │ │ ├── My Project │ │ │ │ │ ├── AssemblyInfo.vb │ │ │ │ │ ├── Resources.Designer.vb │ │ │ │ │ ├── Resources.resx │ │ │ │ │ └── Resources │ │ │ │ │ │ └── small.tinyfnt │ │ │ │ ├── Program.vb │ │ │ │ ├── Project.ico │ │ │ │ ├── VBTemplate.wxs │ │ │ │ └── VBWinTemplateProject.csproj │ │ │ └── build.dirproj │ │ └── build.dirproj │ └── build.dirproj ├── Samples │ ├── Clock │ │ ├── Clock.sln │ │ ├── Clock │ │ │ ├── Clock.csproj │ │ │ ├── GPIOButtonInputProvider.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources │ │ │ │ ├── nina14.tinyfnt │ │ │ │ └── small.tinyfnt │ │ └── ReadMe.txt │ ├── CustomUI │ │ ├── CustomUI.sln │ │ ├── CustomUI │ │ │ ├── ButtonControl.cs │ │ │ ├── CustomUI.csproj │ │ │ ├── ListView.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Resources │ │ │ │ └── small.tinyfnt │ │ └── ReadMe.txt │ ├── HttpClient │ │ ├── HttpClient.cs │ │ ├── HttpClient.csproj │ │ ├── HttpClient.sln │ │ ├── NetworkStateMonitor.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Resources │ │ │ ├── DigiCert.cer │ │ │ └── VerisignCA.cer │ │ ├── TimeServiceManager.cs │ │ └── readme.txt │ ├── Threading │ │ ├── ReadMe.txt │ │ ├── Threading.sln │ │ └── Threading │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ └── Threading.csproj │ ├── WPFEmulator │ │ ├── Button.cs │ │ ├── ButtonCollection.cs │ │ ├── Emulator.Config │ │ ├── EmulatorRegistration.wxs │ │ ├── InsertMediaDialogBox.Designer.cs │ │ ├── InsertMediaDialogBox.cs │ │ ├── InsertMediaDialogBox.resx │ │ ├── Lcd.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── ReadMe.txt │ │ ├── Resources │ │ │ ├── DefaultButtonDown.bmp │ │ │ ├── DefaultButtonUp.bmp │ │ │ └── EmulatorSkin.bmp │ │ ├── SampleEmulator.cs │ │ ├── SampleEmulator.csproj │ │ ├── SampleEmulator.slnproj │ │ ├── SampleEmulator.vstproj │ │ ├── SampleEmulatorForm.Designer.cs │ │ ├── SampleEmulatorForm.cs │ │ ├── SampleEmulatorForm.resx │ │ ├── SendToSerialPortDialogBox.Designer.cs │ │ ├── SendToSerialPortDialogBox.cs │ │ ├── SendToSerialPortDialogBox.resx │ │ ├── SerialPort.cs │ │ ├── build.dirproj │ │ └── pretransform.xslt │ └── build.dirproj ├── build.dirproj └── v4.4 │ └── build.dirproj ├── ProjectTemplates ├── MicroBooter │ ├── MicroBooter.h │ ├── MicroBooter.proj │ ├── MicroBooterExt.cpp │ └── scatterfile_microbooter_rvds.xml ├── NativeSample │ ├── NativeSample.cpp │ ├── NativeSample.proj │ ├── nativesample.h │ ├── scatterfile_tools_gcc.xml │ ├── scatterfile_tools_mdk.xml │ └── scatterfile_tools_rvds.xml ├── PortBooter │ ├── GNU_S │ │ └── portBooter_dat.s │ ├── RVD_S │ │ └── portBooter_dat.s │ ├── portBooter.cpp │ ├── portBooter.proj │ ├── portBooterLoader.cpp │ ├── portBooterloader.proj │ ├── scatterfile_bootloader_decompressor_gcc.xml │ ├── scatterfile_bootloader_decompressor_mdk.xml │ ├── scatterfile_bootloader_decompressor_rvds.xml │ ├── scatterfile_bootloader_gcc.xml │ ├── scatterfile_bootloader_mdk.xml │ └── scatterfile_bootloader_rvds.xml ├── TinyBooter │ ├── GNU_S │ │ └── TinyBooter_dat.s │ ├── RVD_S │ │ └── TinyBooter_dat.s │ ├── TinyBooter.proj │ ├── TinyBooterDecompressor.proj │ ├── TinyBooterEntry.cpp │ ├── allocator.cpp │ ├── scatterfile_bootloader_decompressor_gcc.xml │ ├── scatterfile_bootloader_decompressor_mdk.xml │ ├── scatterfile_bootloader_decompressor_rvds.xml │ ├── scatterfile_bootloader_gcc.xml │ ├── scatterfile_bootloader_mdk.xml │ └── scatterfile_bootloader_rvds.xml ├── TinyCLR │ ├── GNU_S │ │ └── tinyclr_dat.s │ ├── RVD_S │ │ └── tinyclr_dat.s │ ├── TinyCLR.proj │ ├── allocator.cpp │ ├── scatterfile_tinyclr_gcc.xml │ ├── scatterfile_tinyclr_mdk.xml │ ├── scatterfile_tinyclr_rvds.xml │ └── tinyclr.cpp └── scatterfile_gcc_missing_symbols.xml ├── README.md ├── ReleaseInfo.settings ├── Solutions ├── MCBSTM32F400 │ ├── DeviceCode │ │ ├── Blockstorage │ │ │ ├── M29W640FB │ │ │ │ ├── M29W640FB_BlConfig.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── STM32F4 │ │ │ │ ├── STM32F4_BlConfig.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── addDevices │ │ │ │ ├── Bl_addDevices.cpp │ │ │ │ └── dotNetMF.proj │ │ │ └── dotNetMF.proj │ │ ├── CMSIS_RTX_Config │ │ │ ├── RTX_Conf_CM.c │ │ │ └── dotNetMF.proj │ │ ├── Crypto │ │ │ ├── PKCS11_Config.cpp │ │ │ └── dotNetMF.proj │ │ ├── GlobalLock │ │ │ ├── SmartPtr_IRQ.cpp │ │ │ └── dotNetMF.proj │ │ ├── Init │ │ │ ├── IO_Init.cpp │ │ │ └── dotNetMF.proj │ │ ├── Initialization │ │ │ ├── MasterConfig.h │ │ │ ├── OEM_Model_SKU_NetworkID.cpp │ │ │ ├── SystemState.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_loader.proj │ │ │ └── tinyhal.cpp │ │ ├── M29W640FB_Flash │ │ │ ├── Driver_Common.h │ │ │ ├── Driver_Flash.h │ │ │ ├── M29W640FB.c │ │ │ ├── M29W640FB.h │ │ │ ├── M29W640FB_Flash.h │ │ │ ├── M29W640FB_Flash_driver.cpp │ │ │ └── dotNetMF.proj │ │ ├── Network_Config_HAL │ │ │ ├── Network_config_MCBSTM32F400.cpp │ │ │ └── dotNetMF.proj │ │ ├── TinyHal │ │ │ ├── Aborts.cpp │ │ │ ├── CpuPower.cpp │ │ │ ├── GNU_S │ │ │ │ ├── AppEntry.s │ │ │ │ ├── FirstEntry.s │ │ │ │ ├── IDelayLoop.s │ │ │ │ └── Interlocked.s │ │ │ ├── OsHal.h │ │ │ ├── RVD_S │ │ │ │ ├── AppEntry.s │ │ │ │ ├── FirstEntry.s │ │ │ │ ├── IDelayLoop.s │ │ │ │ └── Interlocked.s │ │ │ ├── Retarget.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_loader.proj │ │ │ └── main.cpp │ │ └── USB │ │ │ ├── dotNetMF.proj │ │ │ └── usb_config.cpp │ ├── MCBSTM32F400.settings │ ├── MCBSTM32F400_NONET.settings │ ├── ManagedCode │ │ ├── Hardware │ │ │ ├── CPU.cs │ │ │ └── MCBSTM32F400_hardware.csproj │ │ └── dotnetmf.proj │ ├── MicroBooter │ │ ├── MicroBooter.h │ │ ├── MicroBooter.proj │ │ ├── MicroBooterExt.cpp │ │ └── scatterfile_microbooter_rvds.xml │ ├── TinyBooter │ │ ├── TinyBooter.proj │ │ ├── TinyBooterEntry.cpp │ │ ├── allocator.cpp │ │ ├── scatterfile_bootloader_gcc.xml │ │ └── scatterfile_bootloader_mdk.xml │ ├── TinyCLR │ │ ├── GNU_S │ │ │ └── tinyclr_dat.s │ │ ├── RVD_S │ │ │ └── tinyclr_dat.s │ │ ├── TinyCLR.proj │ │ ├── allocator.cpp │ │ ├── scatterfile_tinyclr_gcc.xml │ │ ├── scatterfile_tinyclr_mdk.xml │ │ └── tinyclr.cpp │ ├── TinyCLR_NONET │ │ ├── GNU_S │ │ │ └── tinyclr_nonet_dat.s │ │ ├── RVD_S │ │ │ └── tinyclr_nonet_dat.s │ │ ├── TinyCLR_NONET.proj │ │ ├── allocator.cpp │ │ ├── scatterfile_tinyclr_gcc.xml │ │ ├── scatterfile_tinyclr_mdk.xml │ │ ├── scatterfile_tinyclr_nonet_gcc.xml │ │ ├── scatterfile_tinyclr_nonet_mdk.xml │ │ └── tinyclr.cpp │ ├── dotnetmf.proj │ ├── lwipopts.h │ ├── netmfdbg │ │ ├── STM32F4xx_TP.ini │ │ ├── STM32_SWO.ini │ │ ├── netmfdbg.uvoptx │ │ └── netmfdbg.uvprojx │ ├── platform_selector.h │ └── scatterfile_gcc_missing_symbols.xml ├── STM32F429IDISCOVERY │ ├── DeviceCode │ │ ├── Blockstorage │ │ │ ├── STM32F4 │ │ │ │ ├── STM32F4_BlConfig.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── addDevices │ │ │ │ ├── Bl_addDevices.cpp │ │ │ │ └── dotNetMF.proj │ │ │ └── dotNetMF.proj │ │ ├── Init │ │ │ ├── IO_Init.cpp │ │ │ └── dotNetMF.proj │ │ ├── Initialization │ │ │ ├── MasterConfig.h │ │ │ ├── OEM_Model_SKU_NetworkID.cpp │ │ │ ├── SystemState.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_loader.proj │ │ │ └── tinyhal.cpp │ │ └── USB │ │ │ ├── dotNetMF.proj │ │ │ └── usb_config.cpp │ ├── STM32F429IDISCOVERY.settings │ ├── TinyBooter │ │ ├── TinyBooter.proj │ │ ├── TinyBooterEntry.cpp │ │ ├── allocator.cpp │ │ ├── scatterfile_bootloader_gcc.xml │ │ └── scatterfile_bootloader_mdk.xml │ ├── TinyCLR │ │ ├── GNU_S │ │ │ └── tinyclr_dat.s │ │ ├── RVD_S │ │ │ └── tinyclr_dat.s │ │ ├── TinyCLR.proj │ │ ├── allocator.cpp │ │ ├── scatterfile_tinyclr_gcc.xml │ │ ├── scatterfile_tinyclr_mdk.xml │ │ └── tinyclr.cpp │ ├── dotnetmf.proj │ ├── platform_selector.h │ └── scatterfile_gcc_missing_symbols.xml ├── STM32F4DISCOVERY │ ├── DeviceCode │ │ ├── Blockstorage │ │ │ ├── STM32F4 │ │ │ │ ├── STM32F4_BlConfig.cpp │ │ │ │ └── dotNetMF.proj │ │ │ ├── addDevices │ │ │ │ ├── Bl_addDevices.cpp │ │ │ │ └── dotNetMF.proj │ │ │ └── dotNetMF.proj │ │ ├── Init │ │ │ ├── IO_Init.cpp │ │ │ └── dotNetMF.proj │ │ ├── Initialization │ │ │ ├── MasterConfig.h │ │ │ ├── OEM_Model_SKU_NetworkID.cpp │ │ │ ├── SystemState.cpp │ │ │ ├── dotNetMF.proj │ │ │ ├── dotNetMF_loader.proj │ │ │ └── tinyhal.cpp │ │ └── USB │ │ │ ├── dotNetMF.proj │ │ │ └── usb_config.cpp │ ├── STM32F4DISCOVERY.settings │ ├── TinyBooter │ │ ├── TinyBooter.proj │ │ ├── TinyBooterEntry.cpp │ │ ├── allocator.cpp │ │ ├── scatterfile_bootloader_gcc.xml │ │ └── scatterfile_bootloader_mdk.xml │ ├── TinyCLR │ │ ├── GNU_S │ │ │ └── tinyclr_dat.s │ │ ├── RVD_S │ │ │ └── tinyclr_dat.s │ │ ├── TinyCLR.proj │ │ ├── allocator.cpp │ │ ├── scatterfile_tinyclr_gcc.xml │ │ ├── scatterfile_tinyclr_mdk.xml │ │ └── tinyclr.cpp │ ├── dotnetmf.proj │ ├── platform_selector.h │ └── scatterfile_gcc_missing_symbols.xml ├── Template │ ├── DeviceCode │ │ ├── USB_Config_PAL │ │ │ ├── dotNetMF.proj │ │ │ └── usb_config_TEMPLATE.cpp │ │ ├── USB_HAL │ │ │ ├── TEMPLATE_functions_USB.cpp │ │ │ └── dotNetMF.proj │ │ ├── Various.cpp │ │ └── dotNetMF.proj │ ├── NativeSample │ │ ├── NativeSample.cpp │ │ ├── NativeSample.proj │ │ ├── nativesample.h │ │ ├── scatterfile_tools_gcc.xml │ │ └── scatterfile_tools_rvds.xml │ ├── PortBooter │ │ ├── GNU_S │ │ │ └── portBooter_dat.s │ │ ├── RVD_S │ │ │ └── portBooter_dat.s │ │ ├── portBooter.cpp │ │ ├── portBooter.proj │ │ ├── portBooterLoader.cpp │ │ ├── portBooterloader.proj │ │ ├── scatterfile_bootloader_decompressor_gcc.xml │ │ ├── scatterfile_bootloader_decompressor_rvds.xml │ │ ├── scatterfile_bootloader_gcc.xml │ │ └── scatterfile_bootloader_rvds.xml │ ├── Template.settings │ ├── TinyBooter │ │ ├── GNU_S │ │ │ └── TinyBooter_dat.s │ │ ├── RVD_S │ │ │ └── TinyBooter_dat.s │ │ ├── TinyBooter.proj │ │ ├── TinyBooterDecompressor.proj │ │ ├── TinyBooterEntry.cpp │ │ ├── allocator.cpp │ │ ├── scatterfile_bootloader_decompressor_gcc.xml │ │ ├── scatterfile_bootloader_decompressor_rvds.xml │ │ ├── scatterfile_bootloader_gcc.xml │ │ └── scatterfile_bootloader_rvds.xml │ ├── TinyCLR │ │ ├── GNU_S │ │ │ └── tinyclr_dat.s │ │ ├── RVD_S │ │ │ └── tinyclr_dat.s │ │ ├── TinyCLR.proj │ │ ├── allocator.cpp │ │ ├── scatterfile_ram_functions.xml │ │ ├── scatterfile_tinyclr_gcc.xml │ │ ├── scatterfile_tinyclr_ram_functions.xml │ │ └── tinyclr.cpp │ ├── dotnetmf.proj │ ├── platform_selector.h │ └── scatterfile_gcc_missing_symbols.xml ├── Template_BE │ ├── DeviceCode │ │ ├── USB_Config_PAL │ │ │ ├── dotNetMF.proj │ │ │ └── usb_config_TEMPLATE_BE.cpp │ │ ├── USB_HAL │ │ │ ├── TEMPLATE_functions_USB.cpp │ │ │ └── dotNetMF.proj │ │ ├── Various.cpp │ │ └── dotNetMF.proj │ ├── NativeSample │ │ ├── NativeSample.cpp │ │ ├── NativeSample.proj │ │ ├── nativesample.h │ │ ├── scatterfile_tools_gcc.xml │ │ └── scatterfile_tools_rvds.xml │ ├── PortBooter │ │ ├── GNU_S │ │ │ └── portBooter_dat.s │ │ ├── RVD_S │ │ │ └── portBooter_dat.s │ │ ├── portBooter.cpp │ │ ├── portBooter.proj │ │ ├── portBooterLoader.cpp │ │ ├── portBooterloader.proj │ │ ├── scatterfile_bootloader_decompressor_gcc.xml │ │ ├── scatterfile_bootloader_decompressor_rvds.xml │ │ ├── scatterfile_bootloader_gcc.xml │ │ └── scatterfile_bootloader_rvds.xml │ ├── Template_BE.settings │ ├── TinyCLR │ │ ├── GNU_S │ │ │ └── tinyclr_dat.s │ │ ├── RVD_S │ │ │ └── tinyclr_dat.s │ │ ├── TinyCLR.proj │ │ ├── allocator.cpp │ │ ├── scatterfile_ram_functions.xml │ │ ├── scatterfile_tinyclr_gcc.xml │ │ ├── scatterfile_tinyclr_ram_functions.xml │ │ └── tinyclr.cpp │ ├── dotnetmf.proj │ ├── platform_selector.h │ └── scatterfile_gcc_missing_symbols.xml ├── Windows │ ├── TinyCLR │ │ ├── BlockStorage.cpp │ │ ├── ClrDependencies │ │ │ ├── BuildDep.cmd │ │ │ ├── ClrDependencies.vcxproj │ │ │ ├── ClrDependencies.vcxproj.filters │ │ │ ├── Empty.cpp │ │ │ └── readme.md │ │ ├── ConfigSection.cpp │ │ ├── CpuPower.cpp │ │ ├── DebuggerPort.cpp │ │ ├── DebuggerPortConsole │ │ │ ├── App.config │ │ │ ├── DebuggerPortConsole.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── DeviceCode │ │ │ ├── Network │ │ │ │ ├── WinPcap_Eth_lwIP │ │ │ │ │ ├── WinPcap_Eth_lwIP_driver_config.cpp │ │ │ │ │ └── dotNetMF.proj │ │ │ │ └── dotNetMF.proj │ │ │ └── dotNetMF.proj │ │ ├── Events.cpp │ │ ├── Lcd.cpp │ │ ├── Memory.cpp │ │ ├── MemoryMappedFile.h │ │ ├── NamedPipe.h │ │ ├── OutputDebugStream.cpp │ │ ├── OutputDebugStream.h │ │ ├── RequiredCpuApis.cpp │ │ ├── RequiredHalApis.cpp │ │ ├── ScopeGuard.h │ │ ├── SmartPtr_IRQ.cpp │ │ ├── SystemState.cpp │ │ ├── Time.cpp │ │ ├── TinyCLR.proj │ │ ├── TinyCLR.sln │ │ ├── TinyCLR.vcxproj │ │ ├── TinyCLR.vcxproj.filters │ │ ├── WatchDog.cpp │ │ ├── Win32Settings.cpp │ │ ├── Win32Settings.h │ │ ├── WinPCAPDeviceList.h │ │ ├── cmsis_os.h │ │ ├── dotNetMF.proj │ │ ├── main.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Windows.settings │ ├── dotnetmf.proj │ ├── lwipopts.h │ └── platform_selector.h └── Windows2 │ ├── TinyCLR │ ├── Analog.cpp │ ├── Battery.cpp │ ├── BlockStorage.cpp │ ├── Com.cpp │ ├── EmulatorNative.cpp │ ├── EmulatorNative.h │ ├── Events.cpp │ ├── FS.cpp │ ├── GPIO.cpp │ ├── I2C.cpp │ ├── Lcd.cpp │ ├── Memory.cpp │ ├── NetAssemblyInfo.cpp │ ├── PKCS11.h │ ├── PKCS11_Config.cpp │ ├── PKCS11_Token.cpp │ ├── PKCS11_digest.cpp │ ├── PKCS11_encryption.cpp │ ├── PKCS11_keys.cpp │ ├── PKCS11_objects.cpp │ ├── PKCS11_random.cpp │ ├── PKCS11_session.cpp │ ├── PKCS11_signature.cpp │ ├── PWM.cpp │ ├── SPI.cpp │ ├── Security.cpp │ ├── Serial.cpp │ ├── Sockets.cpp │ ├── Ssl.cpp │ ├── Time.cpp │ ├── TinyCLR.proj │ ├── TinyCLR.proj.port │ ├── TinyCLR.proj_no_floating_point │ ├── TinyCLR.vcproj │ ├── TouchPanel.cpp │ ├── UI.cpp │ ├── Update.cpp │ ├── Update.h │ ├── Usb.cpp │ ├── Various.cpp │ ├── VirtualKey.cpp │ ├── WatchDog.cpp │ └── stdafx.h │ ├── Windows2.settings │ ├── Windows2.settings_no_floating_point │ ├── dotnetmf.proj │ └── platform_selector.h ├── Support ├── CreateMfPkVersionProj.proj ├── CreateReleaseInfo.proj ├── GenerateFrameworkList.proj ├── Include │ ├── Support_Include.vcproj │ ├── TinySupport.h │ ├── WireProtocol.h │ └── dotNetMF.proj ├── WireProtocol │ ├── Compression.cpp │ ├── WireProtocol.cpp │ ├── WireProtocol.vcproj │ ├── dotNetMF.proj │ ├── stdafx.cpp │ └── stdafx.h ├── crc │ ├── CRC.cpp │ ├── crc.vcproj │ ├── dotNetMF.proj │ ├── stdafx.cpp │ └── stdafx.h ├── dotNetMF.proj └── frameworkbase │ ├── dotNetMF.proj │ └── dotNetMF.proj.port ├── Test ├── JTAG │ ├── Apps │ │ ├── HelloWorld │ │ │ ├── HelloWorld.datproj │ │ │ ├── HelloWorld.proj │ │ │ └── Main.cs │ │ ├── LCD │ │ │ ├── LCD.datproj │ │ │ ├── lcd.cs │ │ │ └── lcd.proj │ │ ├── Network │ │ │ ├── loop.cs │ │ │ ├── network.datproj │ │ │ └── network.proj │ │ └── getip │ │ │ ├── getip.datproj │ │ │ ├── getip.proj │ │ │ └── loop.cs │ └── ReadMe.TXT ├── Native │ └── Src │ │ ├── GPIO │ │ ├── GPIO.cpp │ │ └── GPIO.h │ │ ├── SPI │ │ ├── eeprom_stm95x.cpp │ │ ├── eeprom_stm95x.h │ │ ├── spi.cpp │ │ └── spi.h │ │ ├── UART │ │ ├── UART.cpp │ │ └── UART.h │ │ ├── dotNetMF.proj │ │ ├── log │ │ ├── Log.cpp │ │ └── Log.h │ │ ├── ramtest │ │ ├── ramtest.cpp │ │ └── ramtest.h │ │ ├── timedevents │ │ ├── timedevents.CPP │ │ └── timedevents.H │ │ └── timers │ │ ├── timers.cpp │ │ └── timers.h ├── PKTest │ └── Native │ │ └── Src │ │ ├── SPI │ │ ├── spi.CPP │ │ └── spi.H │ │ ├── TEvents │ │ ├── TEvents.CPP │ │ └── TEvents.H │ │ ├── UART │ │ ├── UART.cpp │ │ └── UART.h │ │ ├── dotNetMF.proj │ │ └── log │ │ ├── Log.cpp │ │ └── Log.h ├── Platform │ ├── Desktop │ │ └── CLR │ │ │ └── Microsoft.SPOT.Net.Security │ │ │ └── ClientServer │ │ │ ├── Desktop.csproj │ │ │ ├── Desktop.sln │ │ │ ├── Desktop.slnproj │ │ │ ├── Main.cs │ │ │ ├── Resource1.Designer.cs │ │ │ ├── Resource1.resx │ │ │ ├── SslClient.cs │ │ │ ├── SslServer.cs │ │ │ ├── SslTestTable.cs │ │ │ ├── SslTests.cs │ │ │ ├── TestManager.cs │ │ │ ├── TestProxy.cs │ │ │ ├── TestUtilities.cs │ │ │ ├── app.config │ │ │ ├── desktop.p12 │ │ │ ├── device.p12 │ │ │ └── server.p12 │ ├── Setup │ │ ├── Directories.wxs │ │ ├── EndianFeatures.wixproj │ │ ├── EndianFeatures.wxs │ │ ├── ProductVersion.wxs │ │ ├── Readme.txt │ │ ├── TestSetup.wixproj │ │ ├── TestSetup.wxs │ │ └── devenv_setup.wxs │ ├── Tests │ │ ├── CLR │ │ │ ├── Microsoft.SPOT.Graphics │ │ │ │ ├── Bitmap.csproj │ │ │ │ ├── Bitmap.sln │ │ │ │ ├── Bitmap.slnproj │ │ │ │ ├── BitmapTest.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── PandaGif.cs │ │ │ │ ├── SpotGraphicsTests.wixproj │ │ │ │ ├── SpotGraphicsTests.wxs │ │ │ │ ├── Untitled.cs │ │ │ │ ├── WaterFallJpg.cs │ │ │ │ └── build.dirproj │ │ │ ├── Microsoft.SPOT.Hardware │ │ │ │ ├── EmulateHardware │ │ │ │ │ ├── EmulateHardware.csproj │ │ │ │ │ ├── EmulateHardware.sln │ │ │ │ │ ├── EmulateHardware.slnproj │ │ │ │ │ ├── FeatureTests.cs │ │ │ │ │ ├── TestPorts.cs │ │ │ │ │ ├── TestPower.cs │ │ │ │ │ ├── TestSerialPort.cs │ │ │ │ │ ├── TestWatchdog.cs │ │ │ │ │ └── master.cs │ │ │ │ ├── I2C │ │ │ │ │ ├── FeatureTests.cs │ │ │ │ │ ├── I2C.csproj │ │ │ │ │ ├── I2C.sln │ │ │ │ │ ├── I2C.slnproj │ │ │ │ │ └── Master.cs │ │ │ │ ├── LargeBuffer │ │ │ │ │ ├── LargeBuffer.csproj │ │ │ │ │ ├── LargeBuffer.sln │ │ │ │ │ ├── LargeBuffer.slnproj │ │ │ │ │ ├── LargeBufferTests.cs │ │ │ │ │ └── Master.cs │ │ │ │ ├── SpotHardwareTests.wixproj │ │ │ │ ├── SpotHardwareTests.wxs │ │ │ │ ├── UsbClient │ │ │ │ │ ├── CompositeTest.cs │ │ │ │ │ ├── FeatureTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── UsbClient.csproj │ │ │ │ │ ├── UsbClient.slnproj │ │ │ │ │ ├── UsbClientTest.cs │ │ │ │ │ ├── UsbDefaultConfigTest.cs │ │ │ │ │ └── usbclient.sln │ │ │ │ └── build.dirproj │ │ │ ├── Microsoft.SPOT.Interop │ │ │ │ ├── Interop.cs │ │ │ │ ├── Interop.csproj │ │ │ │ ├── Interop.sln │ │ │ │ ├── Interop.slnproj │ │ │ │ ├── InteropTest1.cs │ │ │ │ ├── InteropTest2.cs │ │ │ │ ├── SpotInteropTests.wixproj │ │ │ │ ├── SpotInteropTests.wxs │ │ │ │ ├── build.dirproj │ │ │ │ └── master.cs │ │ │ ├── Microsoft.SPOT.Net.Security │ │ │ │ ├── ClientServer │ │ │ │ │ ├── CertificatesAndCAs.cs │ │ │ │ │ ├── Device.csproj │ │ │ │ │ ├── Device.sln │ │ │ │ │ ├── Device.slnproj │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── OpenSsl │ │ │ │ │ │ └── Certs │ │ │ │ │ │ │ ├── DefCa.der │ │ │ │ │ │ │ ├── DefCa.p12 │ │ │ │ │ │ │ ├── DefCa.pem │ │ │ │ │ │ │ ├── DefCa.txt │ │ │ │ │ │ │ ├── cacert.cer │ │ │ │ │ │ │ ├── cacert.h │ │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ │ ├── cakey.cer │ │ │ │ │ │ │ ├── cakey.pem │ │ │ │ │ │ │ ├── newcert.h │ │ │ │ │ │ │ ├── newcert.pem │ │ │ │ │ │ │ ├── newreq.pem │ │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ │ └── tmp.pem │ │ │ │ │ ├── SslClient.cs │ │ │ │ │ ├── SslServer.cs │ │ │ │ │ ├── SslTestTable.cs │ │ │ │ │ ├── SslTests.cs │ │ │ │ │ ├── TestManager.cs │ │ │ │ │ ├── TestProxy.cs │ │ │ │ │ ├── TestUtilities.cs │ │ │ │ │ └── server.pem │ │ │ │ ├── SpotNetSecurityTests.wixproj │ │ │ │ ├── SpotNetSecurityTests.wxs │ │ │ │ ├── SslStream │ │ │ │ │ ├── CertificateStoreTests.cs │ │ │ │ │ ├── Certificates │ │ │ │ │ │ ├── NetMFCert.cer │ │ │ │ │ │ └── NetMFCert.pfx │ │ │ │ │ ├── CertificatesAndCAs.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── SslClient.cs │ │ │ │ │ ├── SslServer.cs │ │ │ │ │ ├── SslStreamTests.cs │ │ │ │ │ ├── SslStreamTests.csproj │ │ │ │ │ ├── SslStreamTests.sln │ │ │ │ │ ├── SslStreamTests.slnproj │ │ │ │ │ ├── Tools.cs │ │ │ │ │ └── X509CertificateTests.cs │ │ │ │ └── build.dirproj │ │ │ ├── Microsoft.SPOT.Net │ │ │ │ ├── SpotNetTests.wixproj │ │ │ │ ├── SpotNetTests.wxs │ │ │ │ ├── WiFiTests │ │ │ │ │ └── WiFiTests1 │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── WiFiConfigTests.cs │ │ │ │ │ │ ├── WiFiTests1.csproj │ │ │ │ │ │ ├── WiFiTests1.sln │ │ │ │ │ │ └── WiFiTests1.slnproj │ │ │ │ ├── build.dirproj │ │ │ │ └── netInfoTests │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── NetworkInterfaceTests.cs │ │ │ │ │ ├── netInfoTests.csproj │ │ │ │ │ ├── netInfoTests.sln │ │ │ │ │ └── netInfoTests.slnproj │ │ │ ├── Microsoft.SPOT.Time │ │ │ │ ├── SpotTimeTests.wixproj │ │ │ │ ├── SpotTimeTests.wxs │ │ │ │ ├── TimeServiceTests │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── ServiceTests.cs │ │ │ │ │ ├── TimeServiceTests.csproj │ │ │ │ │ ├── TimeServiceTests.sln │ │ │ │ │ └── TimeServiceTests.slnproj │ │ │ │ └── build.dirproj │ │ │ ├── Microsoft.SPOT.TinyCore │ │ │ │ ├── Controls │ │ │ │ │ ├── BorderTests.cs │ │ │ │ │ ├── CanvasTests.cs │ │ │ │ │ ├── Controls.csproj │ │ │ │ │ ├── Controls.sln │ │ │ │ │ ├── Controls.slnproj │ │ │ │ │ ├── ImageTests.cs │ │ │ │ │ ├── ListBoxTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── PanelTests.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Green.JPG │ │ │ │ │ │ ├── NinaB.tinyfnt │ │ │ │ │ │ ├── Yellow.JPG │ │ │ │ │ │ └── small.tinyfnt │ │ │ │ │ ├── ScrollViewerTests.cs │ │ │ │ │ ├── StackPanelTests.cs │ │ │ │ │ ├── TextFlowTests.cs │ │ │ │ │ └── TextTests.cs │ │ │ │ ├── Media │ │ │ │ │ ├── BrushTests.cs │ │ │ │ │ ├── ColorTests.cs │ │ │ │ │ ├── DrawingContextTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── Media.csproj │ │ │ │ │ ├── Media.sln │ │ │ │ │ ├── Media.slnproj │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ └── Resources.resx │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── Green.JPG │ │ │ │ │ │ ├── NinaB.tinyfnt │ │ │ │ │ │ ├── Red.JPG │ │ │ │ │ │ ├── Tom_and_Jerry.JPG │ │ │ │ │ │ ├── Yellow_flower.jpg │ │ │ │ │ │ └── Yellow_flower_small.jpg │ │ │ │ ├── Presentation │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── Presentation.csproj │ │ │ │ │ ├── Presentation.sln │ │ │ │ │ ├── Presentation.slnproj │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── small.tinyfnt │ │ │ │ │ └── UIElementTests.cs │ │ │ │ ├── Shapes │ │ │ │ │ ├── EllipseTests.cs │ │ │ │ │ ├── LineTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── PolygonTests.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── RectangleTests.cs │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── NinaB.tinyfnt │ │ │ │ │ │ └── small.tinyfnt │ │ │ │ │ ├── Shapes.csproj │ │ │ │ │ ├── Shapes.sln │ │ │ │ │ └── Shapes.slnproj │ │ │ │ ├── SpotTinyCoreTests.wixproj │ │ │ │ ├── SpotTinyCoreTests.wxs │ │ │ │ └── build.dirproj │ │ │ ├── Microsoft.SPOT │ │ │ │ └── ExtendedWeakReferenceTests │ │ │ │ │ ├── ExtendedWeakReferenceTests.csproj │ │ │ │ │ ├── ExtendedWeakReferenceTests.sln │ │ │ │ │ └── Master.cs │ │ │ ├── System │ │ │ │ ├── Http │ │ │ │ │ ├── AuthenticationTests.cs │ │ │ │ │ ├── Base64Tests.cs │ │ │ │ │ ├── FunctionalTests.cs │ │ │ │ │ ├── HttpKnownHeaderNamesTests.cs │ │ │ │ │ ├── HttpRequestHeaderTests.cs │ │ │ │ │ ├── HttpResponseHeaderTests.cs │ │ │ │ │ ├── HttpServer.cs │ │ │ │ │ ├── HttpStatusCodeTests.cs │ │ │ │ │ ├── HttpTests.csproj │ │ │ │ │ ├── HttpTests.sln │ │ │ │ │ ├── HttpTests.slnproj │ │ │ │ │ ├── HttpVersionTests.cs │ │ │ │ │ ├── HttpWebRequestTests.cs │ │ │ │ │ ├── HttpWebResponseTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── ProtocolViolationExceptionTests.cs │ │ │ │ │ ├── TestServer.cs │ │ │ │ │ ├── UriTests.cs │ │ │ │ │ ├── Utilities.cs │ │ │ │ │ ├── WebExceptionTests.cs │ │ │ │ │ ├── WebHeaderCollectionTests.cs │ │ │ │ │ ├── WebProxyTests.cs │ │ │ │ │ ├── WebRequestTests.cs │ │ │ │ │ └── WebResponseTests.cs │ │ │ │ ├── IO │ │ │ │ │ ├── Directory │ │ │ │ │ │ ├── CreateDirectory.cs │ │ │ │ │ │ ├── DI_Constructor.cs │ │ │ │ │ │ ├── Delete.cs │ │ │ │ │ │ ├── DirectoryTests.csproj │ │ │ │ │ │ ├── DirectoryTests.sln │ │ │ │ │ │ ├── DirectoryTests.slnproj │ │ │ │ │ │ ├── Exists.cs │ │ │ │ │ │ ├── GetDirectories.cs │ │ │ │ │ │ ├── GetFiles.cs │ │ │ │ │ │ ├── GetSetCurrentDirectory.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ └── Move.cs │ │ │ │ │ ├── DirectoryInfoTests.cs │ │ │ │ │ ├── DirectoryTests.cs │ │ │ │ │ ├── File │ │ │ │ │ │ ├── Copy.cs │ │ │ │ │ │ ├── Create.cs │ │ │ │ │ │ ├── Delete.cs │ │ │ │ │ │ ├── Exists.cs │ │ │ │ │ │ ├── FileTests.csproj │ │ │ │ │ │ ├── FileTests.sln │ │ │ │ │ │ ├── FileTests.slnproj │ │ │ │ │ │ ├── GetSetAttributes.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── OpenRead.cs │ │ │ │ │ │ ├── OpenWrite.cs │ │ │ │ │ │ ├── Open_FM.cs │ │ │ │ │ │ ├── Open_FM_FA.cs │ │ │ │ │ │ ├── Open_FM_FA_FS.cs │ │ │ │ │ │ └── ReadAllBytes.cs │ │ │ │ │ ├── FileInfoTests.cs │ │ │ │ │ ├── FileStream │ │ │ │ │ │ ├── CanRead.cs │ │ │ │ │ │ ├── CanSeek.cs │ │ │ │ │ │ ├── CanWrite.cs │ │ │ │ │ │ ├── Constructors_FileAccess.cs │ │ │ │ │ │ ├── Constructors_FileMode.cs │ │ │ │ │ │ ├── Constructors_FileShare.cs │ │ │ │ │ │ ├── FileStreamHelper.cs │ │ │ │ │ │ ├── FileStreamTests.csproj │ │ │ │ │ │ ├── FileStreamTests.sln │ │ │ │ │ │ ├── FileStreamTests.slnproj │ │ │ │ │ │ ├── Flush.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── PropertyTests.cs │ │ │ │ │ │ ├── Read.cs │ │ │ │ │ │ ├── Seek.cs │ │ │ │ │ │ └── Write.cs │ │ │ │ │ ├── FileStreamTests.cs │ │ │ │ │ ├── FileTests.cs │ │ │ │ │ ├── IOTests.csproj │ │ │ │ │ ├── IOTests.sln │ │ │ │ │ ├── IOTests.slnproj │ │ │ │ │ ├── IOTestsHelper │ │ │ │ │ │ ├── IOTestsHelper.cs │ │ │ │ │ │ └── IOTestsHelper.csproj │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── MemoryStream │ │ │ │ │ │ ├── CanRead.cs │ │ │ │ │ │ ├── CanSeek.cs │ │ │ │ │ │ ├── CanWrite.cs │ │ │ │ │ │ ├── Close.cs │ │ │ │ │ │ ├── Flush.cs │ │ │ │ │ │ ├── Length.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── MemoryStreamHelper.cs │ │ │ │ │ │ ├── MemoryStreamTests.csproj │ │ │ │ │ │ ├── MemoryStreamTests.sln │ │ │ │ │ │ ├── MemoryStreamTests.slnproj │ │ │ │ │ │ ├── MemoryStream_Ctor.cs │ │ │ │ │ │ ├── Position.cs │ │ │ │ │ │ ├── Read.cs │ │ │ │ │ │ ├── ReadByte.cs │ │ │ │ │ │ ├── Seek.cs │ │ │ │ │ │ ├── SetLength.cs │ │ │ │ │ │ ├── ToArray.cs │ │ │ │ │ │ ├── Write.cs │ │ │ │ │ │ ├── WriteByte.cs │ │ │ │ │ │ └── WriteTo.cs │ │ │ │ │ ├── Path │ │ │ │ │ │ ├── ChangeExtension.cs │ │ │ │ │ │ ├── Combine.cs │ │ │ │ │ │ ├── FunctionalCases.cs │ │ │ │ │ │ ├── GetDirectoryName.cs │ │ │ │ │ │ ├── GetExtension.cs │ │ │ │ │ │ ├── GetFileName.cs │ │ │ │ │ │ ├── GetFileNameWithoutExtension.cs │ │ │ │ │ │ ├── GetFullPath.cs │ │ │ │ │ │ ├── GetPathRoot.cs │ │ │ │ │ │ ├── HasExtension.cs │ │ │ │ │ │ ├── IsPathRooted.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── PathTests.csproj │ │ │ │ │ │ ├── PathTests.sln │ │ │ │ │ │ └── PathTests.slnproj │ │ │ │ │ ├── PathTests.cs │ │ │ │ │ └── VolumeLabelTests.cs │ │ │ │ ├── SPOTXmlTests │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── RandomXmlTests.cs │ │ │ │ │ ├── Resource.Designer.cs │ │ │ │ │ ├── Resource.resx │ │ │ │ │ ├── SPOTXmlTests.cs │ │ │ │ │ ├── SPOTXmlTests.csproj │ │ │ │ │ ├── SPOTXmlTests.sln │ │ │ │ │ ├── SPOTXmlTests.slnproj │ │ │ │ │ ├── XmlBasicTests.cs │ │ │ │ │ └── XmlNameTableTests.cs │ │ │ │ ├── Security │ │ │ │ │ ├── ASYMM │ │ │ │ │ │ ├── AsymmetricAlgorithm.cs │ │ │ │ │ │ ├── AsymmetricTests.csproj │ │ │ │ │ │ ├── AsymmetricTests.sln │ │ │ │ │ │ ├── AsymmetricTests.slnproj │ │ │ │ │ │ ├── DSA.cs │ │ │ │ │ │ ├── DSAsign_kl.cs │ │ │ │ │ │ ├── FxUtility.cs │ │ │ │ │ │ ├── KeyExchanges.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── RSA.cs │ │ │ │ │ │ ├── RSAOAEP.cs │ │ │ │ │ │ ├── RSAenc_kl.cs │ │ │ │ │ │ ├── RSAsign_kl.cs │ │ │ │ │ │ └── RSAsignstream.cs │ │ │ │ │ ├── AesTests.cs │ │ │ │ │ ├── BlockTests.cs │ │ │ │ │ ├── Cryptoki.cs │ │ │ │ │ ├── DsaTests.cs │ │ │ │ │ ├── ECDHTests.cs │ │ │ │ │ ├── ECDSATests.cs │ │ │ │ │ ├── ECDiffieHelmanTests.cs │ │ │ │ │ ├── FxUtility.cs │ │ │ │ │ ├── HASHING │ │ │ │ │ │ ├── Desktop │ │ │ │ │ │ │ ├── CorrectHMAC.cs │ │ │ │ │ │ │ ├── DefaultHMAC.cs │ │ │ │ │ │ │ ├── GetHashvsStream.cs │ │ │ │ │ │ │ ├── HashCompare.cs │ │ │ │ │ │ │ ├── HashDriver.cs │ │ │ │ │ │ │ ├── HashTestCase.cs │ │ │ │ │ │ │ ├── Hash_HMACSHA1known.cs │ │ │ │ │ │ │ ├── Hash_MD5known.cs │ │ │ │ │ │ │ ├── Hash_SHA256.cs │ │ │ │ │ │ │ ├── Hash_SHA256known.cs │ │ │ │ │ │ │ ├── Hash_SHA384.cs │ │ │ │ │ │ │ ├── Hash_SHA384known.cs │ │ │ │ │ │ │ ├── Hash_SHA512.cs │ │ │ │ │ │ │ ├── Hash_SHA512known.cs │ │ │ │ │ │ │ ├── LegacyHMAC.cs │ │ │ │ │ │ │ ├── MAC3DES1.cs │ │ │ │ │ │ │ ├── SHACSP_CNG_API.cs │ │ │ │ │ │ │ ├── SHAVS.cs │ │ │ │ │ │ │ ├── Sim_SHA1.cs │ │ │ │ │ │ │ └── TestVectors.xml │ │ │ │ │ │ ├── GetHashvsStream.cs │ │ │ │ │ │ ├── HMACSHA1.vectors │ │ │ │ │ │ ├── HMACSHA256.vectors │ │ │ │ │ │ ├── HMACTestVectors.cs │ │ │ │ │ │ ├── HashTests.csproj │ │ │ │ │ │ ├── HashTests.sln │ │ │ │ │ │ ├── HashTests.slnproj │ │ │ │ │ │ ├── Hash_HMACSHA1known.cs │ │ │ │ │ │ ├── Hash_SHA256.cs │ │ │ │ │ │ ├── Hash_SHA256known.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ └── Sim_SHA1.cs │ │ │ │ │ ├── HashTests.cs │ │ │ │ │ ├── HmacTests.cs │ │ │ │ │ ├── KEYS │ │ │ │ │ │ ├── DSAstore1.cs │ │ │ │ │ │ ├── DeriveBytesTest.cs │ │ │ │ │ │ ├── KeyTests.csproj │ │ │ │ │ │ ├── KeyTests.sln │ │ │ │ │ │ ├── KeyTests.slnproj │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── RSAstore1.cs │ │ │ │ │ │ ├── WeakKey3DES.cs │ │ │ │ │ │ └── WeakKeyDES.cs │ │ │ │ │ ├── KeySize.cs │ │ │ │ │ ├── KeySizeTests.cs │ │ │ │ │ ├── MISC │ │ │ │ │ │ ├── CUOE.cs │ │ │ │ │ │ ├── CertTest.cs │ │ │ │ │ │ ├── CryptDeriveKey.cs │ │ │ │ │ │ ├── CryptoConf1.cs │ │ │ │ │ │ ├── CryptoConfSmoke.cs │ │ │ │ │ │ ├── EncodeOID.cs │ │ │ │ │ │ ├── InPlace.cs │ │ │ │ │ │ ├── MaskGeneration.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── MiscSecurity.csproj │ │ │ │ │ │ ├── MiscSecurity.sln │ │ │ │ │ │ ├── MiscSecurity.slnproj │ │ │ │ │ │ ├── PwdDrvBytes.cs │ │ │ │ │ │ ├── Rng1.cs │ │ │ │ │ │ ├── Rng2.cs │ │ │ │ │ │ ├── Rng3.cs │ │ │ │ │ │ ├── RngBits.cs │ │ │ │ │ │ ├── SignDesc.cs │ │ │ │ │ │ ├── StressBase64.cs │ │ │ │ │ │ ├── TestBase64.cs │ │ │ │ │ │ ├── rnprint.cs │ │ │ │ │ │ └── simpinh.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── PADDING │ │ │ │ │ │ ├── AnsiX923.cs │ │ │ │ │ │ ├── Iso10126.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── PaddingBase.cs │ │ │ │ │ │ ├── PaddingTests.csproj │ │ │ │ │ │ ├── PaddingTests.sln │ │ │ │ │ │ ├── PaddingTests.slnproj │ │ │ │ │ │ ├── Pkcs7.cs │ │ │ │ │ │ └── Zeros.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── Resources.resx │ │ │ │ │ ├── RNGTest.cs │ │ │ │ │ ├── RSA │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── RSADiffKeySize.cs │ │ │ │ │ │ ├── RSATestData1024.cs │ │ │ │ │ │ ├── RSATestData1536.cs │ │ │ │ │ │ ├── RSATestData2048.cs │ │ │ │ │ │ ├── RSATestData4096.cs │ │ │ │ │ │ ├── RSATestData512.cs │ │ │ │ │ │ ├── RSATests.csproj │ │ │ │ │ │ ├── RSATests.sln │ │ │ │ │ │ ├── RSATests.slnproj │ │ │ │ │ │ ├── RsaSignatureTestData.cs │ │ │ │ │ │ ├── RsaTestCase.cs │ │ │ │ │ │ ├── RsaTestCase2.cs │ │ │ │ │ │ ├── RsaTestData2.cs │ │ │ │ │ │ ├── WLCRSAData.cs │ │ │ │ │ │ └── WLCScenario.cs │ │ │ │ │ ├── RSATest.cs │ │ │ │ │ ├── SHATest.cs │ │ │ │ │ ├── STREAMS │ │ │ │ │ │ ├── AESAPI.cs │ │ │ │ │ │ ├── AESBlocks.cs │ │ │ │ │ │ ├── AESInterop.cs │ │ │ │ │ │ ├── AESKnownDec2.cs │ │ │ │ │ │ ├── AESKnownEnc2.cs │ │ │ │ │ │ ├── AESTrans2.cs │ │ │ │ │ │ ├── Desktop │ │ │ │ │ │ │ ├── AESAPI.cs │ │ │ │ │ │ │ ├── AESBlocks.cs │ │ │ │ │ │ │ ├── AESInterop.cs │ │ │ │ │ │ │ ├── AESKnownDec1.cs │ │ │ │ │ │ │ ├── AESKnownDec2.cs │ │ │ │ │ │ │ ├── AESKnownEnc1.cs │ │ │ │ │ │ │ ├── AESKnownEnc2.cs │ │ │ │ │ │ │ ├── AESPadding.cs │ │ │ │ │ │ │ ├── AESTrans.cs │ │ │ │ │ │ │ ├── AESTrans2.cs │ │ │ │ │ │ │ ├── EncDecFileScn.cs │ │ │ │ │ │ │ ├── EncDecFileScn1.cs │ │ │ │ │ │ │ ├── EncDecFileScn2.cs │ │ │ │ │ │ │ ├── EncDec_AES.cs │ │ │ │ │ │ │ ├── EncDec_Rijnd.cs │ │ │ │ │ │ │ ├── RC2Salt1.cs │ │ │ │ │ │ │ ├── RC2Salt2.cs │ │ │ │ │ │ │ ├── RC2Salt3.cs │ │ │ │ │ │ │ ├── RijndKnownDec1.cs │ │ │ │ │ │ │ ├── RijndKnownDec2.cs │ │ │ │ │ │ │ ├── RijndKnownEnc1.cs │ │ │ │ │ │ │ ├── RijndKnownEnc2.cs │ │ │ │ │ │ │ ├── RijndTrans.cs │ │ │ │ │ │ │ ├── RijndaelCFB.cs │ │ │ │ │ │ │ ├── RijndaelCFBbig.cs │ │ │ │ │ │ │ ├── RijndaelEncDecCFB.cs │ │ │ │ │ │ │ ├── SimpleEncDecMul_DES.cs │ │ │ │ │ │ │ ├── SimpleEncDec_AES.cs │ │ │ │ │ │ │ ├── SimpleEncDec_DES.cs │ │ │ │ │ │ │ └── SimpleEncDec_Rijndael.cs │ │ │ │ │ │ ├── EncDec_AES.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── SimpleEncDec_AES.cs │ │ │ │ │ │ ├── StreamTests.csproj │ │ │ │ │ │ ├── StreamTests.sln │ │ │ │ │ │ └── StreamTests.slnproj │ │ │ │ │ ├── SecurityTests.csproj │ │ │ │ │ ├── SecurityTests.sln │ │ │ │ │ ├── SecurityTests.slnproj │ │ │ │ │ ├── SessionTests.cs │ │ │ │ │ ├── SymmetricTests.cs │ │ │ │ │ ├── TDesTests.cs │ │ │ │ │ ├── X509Certificate │ │ │ │ │ │ ├── CertTests.csproj │ │ │ │ │ │ ├── CertTests.sln │ │ │ │ │ │ ├── CertTests.slnproj │ │ │ │ │ │ ├── GetUTCTicks.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ │ └── Resources.resx │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ │ └── NetMFCert.pfx │ │ │ │ │ │ ├── X509CertificateExports.cs │ │ │ │ │ │ ├── X509CertificateInvalidImports.cs │ │ │ │ │ │ ├── X509CertificateLoadCertFromBlob.cs │ │ │ │ │ │ ├── X509CertificateLoadCertFromFile.cs │ │ │ │ │ │ ├── X509CertificateRunSuite.cs │ │ │ │ │ │ └── certs │ │ │ │ │ │ │ ├── cacert.pem │ │ │ │ │ │ │ └── msft1.cer │ │ │ │ │ └── X509Certs │ │ │ │ │ │ ├── CertsTest2.csproj │ │ │ │ │ │ ├── CertsTest2.sln │ │ │ │ │ │ ├── CertsTest2.slnproj │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ └── Resources.resx │ │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── NetMFCert.pfx │ │ │ │ │ │ ├── TestAsnCollection.cs │ │ │ │ │ │ ├── TestCOMX509Certificate.cs │ │ │ │ │ │ ├── X509APTCA.cs │ │ │ │ │ │ ├── X509FuzzTest.cs │ │ │ │ │ │ ├── X509Test1.cs │ │ │ │ │ │ ├── X509Test2.cs │ │ │ │ │ │ ├── X509Test3.cs │ │ │ │ │ │ ├── X509Test4.cs │ │ │ │ │ │ ├── XmlDriver.cs │ │ │ │ │ │ ├── certs │ │ │ │ │ │ └── cacert.pem │ │ │ │ │ │ ├── cstore.cs │ │ │ │ │ │ ├── oidtest.cs │ │ │ │ │ │ ├── storebug.cs │ │ │ │ │ │ ├── x509datatest.cs │ │ │ │ │ │ ├── x509tester.cs │ │ │ │ │ │ ├── x509worker.cs │ │ │ │ │ │ ├── xmldsigtest.cs │ │ │ │ │ │ └── xmlsign.cs │ │ │ │ ├── SystemTests.wixproj │ │ │ │ ├── SystemTests.wxs │ │ │ │ ├── Text │ │ │ │ │ ├── Regexp │ │ │ │ │ │ ├── CacheTests.cs │ │ │ │ │ │ ├── CaptureTests.cs │ │ │ │ │ │ ├── GroupTests.cs │ │ │ │ │ │ ├── Master.cs │ │ │ │ │ │ ├── MatchTests.cs │ │ │ │ │ │ ├── PrecompiledTests.cs │ │ │ │ │ │ ├── RegEx.csproj │ │ │ │ │ │ ├── RegEx.slnproj │ │ │ │ │ │ ├── RegexpOptionsTest.cs │ │ │ │ │ │ ├── Split_Grep_Tests.cs │ │ │ │ │ │ ├── SubstringTests.cs │ │ │ │ │ │ └── TestTestsHelper.cs │ │ │ │ │ └── StringBuilder │ │ │ │ │ │ ├── StringBuilder.csproj │ │ │ │ │ │ ├── StringBuilder.slnproj │ │ │ │ │ │ ├── StringBuilderTests.cs │ │ │ │ │ │ └── StringBuilderTestsMaster.cs │ │ │ │ ├── build.dirproj │ │ │ │ ├── netTests │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── NetTests.cs │ │ │ │ │ ├── netTests.csproj │ │ │ │ │ ├── netTests.sln │ │ │ │ │ └── netTests.slnproj │ │ │ │ ├── socketTests │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── SocketExceptionTests.cs │ │ │ │ │ ├── SocketPair.cs │ │ │ │ │ ├── SocketServer.cs │ │ │ │ │ ├── SocketTests.cs │ │ │ │ │ ├── SocketTools.cs │ │ │ │ │ ├── SocketsEnumsTests.cs │ │ │ │ │ ├── StressTests.cs │ │ │ │ │ ├── socketTests.csproj │ │ │ │ │ ├── socketTests.sln │ │ │ │ │ └── socketTests.slnproj │ │ │ │ └── xmlTests │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── XmlTests.cs │ │ │ │ │ ├── xmlTests.csproj │ │ │ │ │ ├── xmlTests.sln │ │ │ │ │ └── xmlTests.slnproj │ │ │ └── mscorlib │ │ │ │ ├── arrays │ │ │ │ ├── Master.cs │ │ │ │ ├── OtherTests.cs │ │ │ │ ├── SimpleTests.cs │ │ │ │ ├── arrays.csproj │ │ │ │ ├── arrays.sln │ │ │ │ └── arrays.slnproj │ │ │ │ ├── attributes │ │ │ │ ├── AttributesTests1.cs │ │ │ │ ├── AttributesTests2.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── attributes.csproj │ │ │ │ ├── attributes.sln │ │ │ │ └── attributes.slnproj │ │ │ │ ├── basicconcepts │ │ │ │ ├── BasicConceptTests.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── basicconcepts.csproj │ │ │ │ ├── basicconcepts.sln │ │ │ │ └── basicconcepts.slnproj │ │ │ │ ├── bitconverter │ │ │ │ ├── BitConverterTests.cs │ │ │ │ ├── Helper.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── TestFailException.cs │ │ │ │ ├── bitconverter.csproj │ │ │ │ ├── bitconverter.sln │ │ │ │ └── bitconverter.slnproj │ │ │ │ ├── build.dirproj │ │ │ │ ├── classes │ │ │ │ ├── classes1 │ │ │ │ │ ├── ConstTests.cs │ │ │ │ │ ├── ConstructorsTests.cs │ │ │ │ │ ├── DeclarationsTests.cs │ │ │ │ │ ├── DestructorsTests.cs │ │ │ │ │ ├── EventsTests.cs │ │ │ │ │ ├── FieldsTests.cs │ │ │ │ │ ├── Master1.cs │ │ │ │ │ ├── classes1.csproj │ │ │ │ │ ├── classes1.sln │ │ │ │ │ └── classes1.slnproj │ │ │ │ ├── classes2 │ │ │ │ │ ├── IndexersTests.cs │ │ │ │ │ ├── Master2.cs │ │ │ │ │ ├── OperatorsTests.cs │ │ │ │ │ ├── PropertiesTests.cs │ │ │ │ │ ├── Static_InstTests.cs │ │ │ │ │ ├── classes2.csproj │ │ │ │ │ ├── classes2.sln │ │ │ │ │ └── classes2.slnproj │ │ │ │ └── classes3 │ │ │ │ │ ├── Master3.cs │ │ │ │ │ ├── MembersTests.cs │ │ │ │ │ ├── MethodsTests.cs │ │ │ │ │ ├── classes3.csproj │ │ │ │ │ ├── classes3.sln │ │ │ │ │ └── classes3.slnproj │ │ │ │ ├── collections │ │ │ │ ├── ArrayListTests.cs │ │ │ │ ├── HashtableTests.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── QueueTests.cs │ │ │ │ ├── StackTests.cs │ │ │ │ ├── TestObjects.cs │ │ │ │ ├── collections.csproj │ │ │ │ ├── collections.sln │ │ │ │ └── collections.slnproj │ │ │ │ ├── conversions │ │ │ │ ├── BoxingTests.cs │ │ │ │ ├── Convert.cs │ │ │ │ ├── ExprefTests.cs │ │ │ │ ├── ImpenumTests.cs │ │ │ │ ├── ImprefTests.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── basic │ │ │ │ │ ├── BasicTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── basic.csproj │ │ │ │ │ ├── basic.sln │ │ │ │ │ └── basic.slnproj │ │ │ │ ├── basic2 │ │ │ │ │ ├── BasicTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── basic2.csproj │ │ │ │ │ ├── basic2.sln │ │ │ │ │ └── basic2.slnproj │ │ │ │ ├── conversions.csproj │ │ │ │ ├── conversions.sln │ │ │ │ ├── conversions.slnproj │ │ │ │ ├── expenum │ │ │ │ │ ├── Expenum1Tests.cs │ │ │ │ │ ├── Expenum2Tests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── expenum.csproj │ │ │ │ │ ├── expenum.sln │ │ │ │ │ └── expenum.slnproj │ │ │ │ ├── expenum2 │ │ │ │ │ ├── ExpenumTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── expenum2.csproj │ │ │ │ │ ├── expenum2.sln │ │ │ │ │ └── expenum2.slnproj │ │ │ │ └── user │ │ │ │ │ ├── ClassClassTests.cs │ │ │ │ │ ├── ClassStructTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── StructClassTests.cs │ │ │ │ │ ├── StructStructTests.cs │ │ │ │ │ ├── selection │ │ │ │ │ ├── BasicSelectionTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── selection.csproj │ │ │ │ │ ├── selection.sln │ │ │ │ │ └── selection.slnproj │ │ │ │ │ ├── user.csproj │ │ │ │ │ ├── user.sln │ │ │ │ │ └── user.slnproj │ │ │ │ ├── delegates │ │ │ │ ├── DelegatesTests.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── delegates.csproj │ │ │ │ ├── delegates.sln │ │ │ │ └── delegates.slnproj │ │ │ │ ├── enums │ │ │ │ ├── EnumTests.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── enums.csproj │ │ │ │ ├── enums.sln │ │ │ │ └── enums.slnproj │ │ │ │ ├── exceptions │ │ │ │ ├── CSharp │ │ │ │ │ ├── ExceptionsTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── exceptions.csproj │ │ │ │ │ ├── exceptions.sln │ │ │ │ │ └── exceptions.slnproj │ │ │ │ └── VB │ │ │ │ │ ├── AppDomainExceptionsTests.vb │ │ │ │ │ ├── ExceptionsTests.vb │ │ │ │ │ ├── Master.vb │ │ │ │ │ ├── exceptions_VB.sln │ │ │ │ │ ├── exceptions_VB.slnproj │ │ │ │ │ └── exceptions_VB.vbproj │ │ │ │ ├── expressions │ │ │ │ ├── expressions1 │ │ │ │ │ ├── ArithmeticTests1.cs │ │ │ │ │ ├── ArithmeticTests2.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── OtherTests1.cs │ │ │ │ │ ├── expressions1.csproj │ │ │ │ │ ├── expressions1.sln │ │ │ │ │ └── expressions1.slnproj │ │ │ │ └── expressions2 │ │ │ │ │ ├── ExpressionsTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── expressions2.csproj │ │ │ │ │ ├── expressions2.sln │ │ │ │ │ └── expressions2.slnproj │ │ │ │ ├── interfaces │ │ │ │ ├── InterfaceTests.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── interfaces.csproj │ │ │ │ ├── interfaces.sln │ │ │ │ └── interfaces.slnproj │ │ │ │ ├── lexical │ │ │ │ ├── LexicalTests1.cs │ │ │ │ ├── LexicalTests2.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── lexical.csproj │ │ │ │ ├── lexical.sln │ │ │ │ └── lexical.slnproj │ │ │ │ ├── mscorlibTests.wixproj │ │ │ │ ├── mscorlibTests.wxs │ │ │ │ ├── mscorlib_emulated_floating_point_test_list.txt │ │ │ │ ├── namespaces │ │ │ │ ├── Master.cs │ │ │ │ ├── NS_attribute_01.cs │ │ │ │ ├── NS_attribute_02.cs │ │ │ │ ├── NS_compunit_01A.cs │ │ │ │ ├── NS_compunit_01B.cs │ │ │ │ ├── NS_compunit_03A.cs │ │ │ │ ├── NS_compunit_03B.cs │ │ │ │ ├── NS_compunit_04A.cs │ │ │ │ ├── NS_compunit_04B.cs │ │ │ │ ├── NS_decl_14.cs │ │ │ │ ├── NS_decl_15.cs │ │ │ │ ├── NamespacesTests.cs │ │ │ │ ├── namespaces.csproj │ │ │ │ ├── namespaces.sln │ │ │ │ └── namespaces.slnproj │ │ │ │ ├── statements │ │ │ │ ├── Master.cs │ │ │ │ ├── StatementsTests.cs │ │ │ │ ├── statements.csproj │ │ │ │ ├── statements.sln │ │ │ │ └── statements.slnproj │ │ │ │ ├── structs │ │ │ │ ├── Master.cs │ │ │ │ ├── StructsTests.cs │ │ │ │ ├── structs.csproj │ │ │ │ ├── structs.sln │ │ │ │ └── structs.slnproj │ │ │ │ ├── systemlib │ │ │ │ ├── systemlib.csproj │ │ │ │ ├── systemlib1 │ │ │ │ │ ├── Guid.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── ParseTests.cs │ │ │ │ │ ├── SystemTimeSpanTests.cs │ │ │ │ │ ├── SystemTimeZoneTests.cs │ │ │ │ │ ├── systemlib1.csproj │ │ │ │ │ ├── systemlib1.sln │ │ │ │ │ └── systemlib1.slnproj │ │ │ │ └── systemlib2 │ │ │ │ │ ├── InitLocalsTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── MicrosoftSpotReflection.cs │ │ │ │ │ ├── SystemAppDomainTests.cs │ │ │ │ │ ├── SystemDateTimeTests.cs │ │ │ │ │ ├── SystemGCTests.cs │ │ │ │ │ ├── SystemMathTests.cs │ │ │ │ │ ├── SystemReflectionAssembly.cs │ │ │ │ │ ├── SystemReflectionMemberTests.cs │ │ │ │ │ ├── SystemReflectionTypeTests.cs │ │ │ │ │ ├── SystemStringTests.cs │ │ │ │ │ ├── SystemTypeTests.cs │ │ │ │ │ ├── SystemWeakReferenceTests.cs │ │ │ │ │ ├── Utf8EncodingTests.cs │ │ │ │ │ ├── systemlib2.csproj │ │ │ │ │ ├── systemlib2.sln │ │ │ │ │ └── systemlib2.slnproj │ │ │ │ ├── threads │ │ │ │ ├── threads1 │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── ThreadTests.cs │ │ │ │ │ ├── threads1.csproj │ │ │ │ │ ├── threads1.sln │ │ │ │ │ └── threads1.slnproj │ │ │ │ ├── threads2 │ │ │ │ │ ├── AutoResetEventTests.cs │ │ │ │ │ ├── InterlockedTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── MonitorTests.cs │ │ │ │ │ ├── TimeoutTests.cs │ │ │ │ │ ├── WaitHandleTests.cs │ │ │ │ │ ├── threads2.csproj │ │ │ │ │ ├── threads2.sln │ │ │ │ │ └── threads2.slnproj │ │ │ │ └── threads3 │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── TimerTests.cs │ │ │ │ │ ├── threads3.csproj │ │ │ │ │ ├── threads3.sln │ │ │ │ │ └── threads3.slnproj │ │ │ │ ├── types │ │ │ │ ├── Master.cs │ │ │ │ ├── ReferenceBoxingTests.cs │ │ │ │ ├── ValueArrayTests.cs │ │ │ │ ├── ValueDefault_ConstTests.cs │ │ │ │ ├── ValueFloatTests.cs │ │ │ │ ├── ValueIntegralTests.cs │ │ │ │ ├── ValueSimpleTests.cs │ │ │ │ ├── ValueTests.cs │ │ │ │ ├── types.csproj │ │ │ │ ├── types.sln │ │ │ │ └── types.slnproj │ │ │ │ └── variables │ │ │ │ ├── CategoriesTests.cs │ │ │ │ ├── Master.cs │ │ │ │ ├── VariablesTests.cs │ │ │ │ ├── variables.csproj │ │ │ │ ├── variables.sln │ │ │ │ └── variables.slnproj │ │ ├── Desktop │ │ │ └── MFDeploy │ │ │ │ ├── MFDeployBasicTests │ │ │ │ ├── FeatureTests.cs │ │ │ │ ├── MFDeployBasicTests.csproj │ │ │ │ ├── MFDeployBasicTests.sln │ │ │ │ ├── MFDeployBasicTests.slnproj │ │ │ │ └── Master.cs │ │ │ │ ├── MFDeployTests.wixproj │ │ │ │ ├── MFDeployTests.wxs │ │ │ │ └── build.dirproj │ │ ├── Native_MathMethods │ │ │ └── Math │ │ │ │ ├── Math │ │ │ │ ├── Master.cs │ │ │ │ ├── MathTests.cs │ │ │ │ ├── MathTests.csproj │ │ │ │ ├── MathTests.sln │ │ │ │ └── MathTests.slnproj │ │ │ │ ├── MathTests.wixproj │ │ │ │ ├── MathTests.wxs │ │ │ │ └── build.dirproj │ │ └── Performance │ │ │ ├── PerformanceTests.wixproj │ │ │ ├── PerformanceTests.wxs │ │ │ ├── ProfilerTests │ │ │ ├── ProfilerCollectionsTests │ │ │ │ ├── Master.cs │ │ │ │ ├── ProfilerCollectionsTests.csproj │ │ │ │ ├── ProfilerCollectionsTests.sln │ │ │ │ └── ProfilerCollectionsTests.slnproj │ │ │ ├── ProfilerStringTests │ │ │ │ ├── Master.cs │ │ │ │ ├── ProfilerStringTests.csproj │ │ │ │ ├── ProfilerStringTests.sln │ │ │ │ └── ProfilerStringTests.slnproj │ │ │ ├── ProfilerTests.wixproj │ │ │ ├── ProfilerTests.wxs │ │ │ ├── ProfilerThreadTests │ │ │ │ ├── Master.cs │ │ │ │ ├── ProfilerThreadTests.csproj │ │ │ │ ├── ProfilerThreadTests.sln │ │ │ │ └── ProfilerThreadTests.slnproj │ │ │ ├── ProfilerXmlTests │ │ │ │ ├── Master.cs │ │ │ │ ├── ProfilerXmlTests.csproj │ │ │ │ ├── ProfilerXmlTests.sln │ │ │ │ ├── ProfilerXmlTests.slnproj │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ └── build.dirproj │ │ │ ├── Sockets │ │ │ ├── FeatureTests.cs │ │ │ ├── Master.cs │ │ │ ├── Properties │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── Resources │ │ │ │ └── NinaB.tinyfnt │ │ │ ├── SocketTools.cs │ │ │ ├── Sockets.csproj │ │ │ └── Sockets.sln │ │ │ ├── Stress │ │ │ ├── Sockets │ │ │ │ ├── Loopback │ │ │ │ │ ├── FeatureTests.cs │ │ │ │ │ ├── Loopback.csproj │ │ │ │ │ ├── Loopback.sln │ │ │ │ │ ├── Loopback.slnproj │ │ │ │ │ └── Master.cs │ │ │ │ ├── MultiThreadStress │ │ │ │ │ ├── FeatureTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── MultiThreadStress.csproj │ │ │ │ │ ├── MultiThreadStress.sln │ │ │ │ │ └── MultiThreadStress.slnproj │ │ │ │ └── NormalMode │ │ │ │ │ ├── SocketClient │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── SocketClientTest.csproj │ │ │ │ │ ├── SocketClientTest.sln │ │ │ │ │ └── SocketClientTest.slnproj │ │ │ │ │ └── SocketServer │ │ │ │ │ ├── Master.cs │ │ │ │ │ ├── Server.cs │ │ │ │ │ ├── SocketServerTest.csproj │ │ │ │ │ ├── SocketServerTest.sln │ │ │ │ │ └── SocketServerTest.slnproj │ │ │ ├── StressTests.wixproj │ │ │ ├── StressTests.wxs │ │ │ └── build.dirproj │ │ │ ├── Strings │ │ │ ├── FeatureTests.cs │ │ │ ├── Master.cs │ │ │ ├── Strings.csproj │ │ │ └── Strings.sln │ │ │ └── build.dirproj │ ├── Tools │ │ ├── AutomationTasks │ │ │ ├── AsyncExecBuildTask.cs │ │ │ ├── AsyncWait.cs │ │ │ ├── AutomationTasks.csproj │ │ │ ├── ExecBuildTask.cs │ │ │ └── bap.cmd │ │ ├── MFDesktopTestRunner │ │ │ ├── Debug.cs │ │ │ ├── MFDesktopTestRunner.cs │ │ │ ├── MFDesktopTestRunner.csproj │ │ │ ├── MFDesktopTestRunner.sln │ │ │ ├── MFTestInterface.cs │ │ │ ├── MFTestResult.cs │ │ │ ├── SpotTestLog.cs │ │ │ └── TestAttributes.cs │ │ ├── MFTestEmulator │ │ │ ├── Button.cs │ │ │ ├── ButtonCollection.cs │ │ │ ├── Emulator.Config │ │ │ ├── Lcd.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ ├── Resources │ │ │ │ ├── DefaultButtonDown.bmp │ │ │ │ ├── DefaultButtonUp.bmp │ │ │ │ └── EmulatorSkin.bmp │ │ │ ├── TestEmulator.cs │ │ │ ├── TestEmulator.csproj │ │ │ ├── TestEmulator.sln │ │ │ ├── TestEmulator.slnproj │ │ │ ├── TestEmulatorForm.Designer.cs │ │ │ ├── TestEmulatorForm.cs │ │ │ ├── TestEmulatorForm.resx │ │ │ └── pretransform.xslt │ │ ├── MFTestRunner │ │ │ ├── Assert.cs │ │ │ ├── MFTestInterface.cs │ │ │ ├── MFTestResult.cs │ │ │ ├── MFTestRunner.cs │ │ │ ├── MFTestRunner.csproj │ │ │ ├── MFTestRunner.sln │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SpotTestLog.cs │ │ │ └── TestAttributes.cs │ │ ├── MFTestSystem │ │ │ ├── App.config │ │ │ ├── Harness.cs │ │ │ ├── MFPowerController.cs │ │ │ ├── MFTestSystem.csproj │ │ │ ├── MFTestSystem.sln │ │ │ ├── MicroFrameworkTest.cs │ │ │ ├── Profile.cs │ │ │ ├── Results │ │ │ │ ├── Images │ │ │ │ │ ├── collapse.gif │ │ │ │ │ └── expand.gif │ │ │ │ └── Results.xsl │ │ │ ├── RunningProcesses.cs │ │ │ ├── ScreenCapture.cs │ │ │ ├── SendMail.cs │ │ │ ├── TestSystem.cs │ │ │ ├── TimedTest.cs │ │ │ ├── Utils.cs │ │ │ └── XmlLog.cs │ │ ├── TestTemplates │ │ │ ├── AddTestTemplates.bat │ │ │ ├── DevEnvironment │ │ │ │ ├── DesktopTests │ │ │ │ │ ├── DesktopTest.sln │ │ │ │ │ ├── FeatureTests.cs │ │ │ │ │ └── Master.cs │ │ │ │ └── DeviceTests │ │ │ │ │ ├── FeatureTests.cs │ │ │ │ │ ├── Master.cs │ │ │ │ │ └── TestTemplate.sln │ │ │ ├── MicroFrameworkTest.vstdir │ │ │ └── SDKEnvironment │ │ │ │ ├── DesktopTests │ │ │ │ ├── DesktopTest.sln │ │ │ │ ├── FeatureTests.cs │ │ │ │ └── Master.cs │ │ │ │ └── DeviceTests │ │ │ │ ├── FeatureTests.cs │ │ │ │ ├── Master.cs │ │ │ │ └── TestTemplate.sln │ │ └── Utility │ │ │ ├── MFUtilities.cs │ │ │ ├── MFUtility.csproj │ │ │ └── MFUtility.sln │ └── build.dirproj ├── build.dirProj └── setenv.cmd ├── TinyCLR.sln ├── TinyCLR_server.sln ├── Update-DeviceSdkAssembly.ps1 ├── crypto ├── build_crypto.cmd ├── build_crypto.proj ├── dotNetMF.proj ├── inc │ └── crypto.h ├── readme.md ├── stubs │ ├── crypto_stub.vcproj │ ├── dotNetMF.proj │ └── stubs.cpp └── test_win │ └── test_win.c ├── dotNetMF.proj ├── mscorlibtests.txt ├── run_tests.cmd ├── sdk.dirproj ├── setenv_base.cmd ├── setenv_gcc.cmd ├── setenv_mdk.cmd ├── setenv_vs.cmd ├── setup ├── CustomActions │ ├── DetectVSRunning │ │ ├── DetectVSRunning.proj │ │ ├── DevEnvNotRunning.cpp │ │ ├── Shared.cpp │ │ ├── ToolsMsmCA.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── Include │ │ ├── Msi.h │ │ └── MsiQuery.h │ └── build.dirproj ├── Docs │ ├── Collection │ │ ├── NetMFCollection.HxC │ │ ├── NetMFCollection.HxT │ │ ├── _ALinks.hxk │ │ ├── _BLinks.hxk │ │ ├── _CLinks.hxk │ │ ├── _FLinks.hxk │ │ ├── _KLinks.hxk │ │ └── _SLinks.hxk │ ├── DNMFFilter10.xml │ ├── MFDeployDocs.wixproj │ ├── NetMFCollection.wixproj │ ├── NetMFCollection.wxs │ ├── PSDKDocs.wixproj │ ├── PSDKDocs.wxs │ ├── RCLPort.wixproj │ ├── RCLPort.wxs │ ├── build.dirproj │ ├── msdn_shortcut.wxs │ └── pkdocs_shortcut.wxs ├── Features │ ├── BasicSamples.wxs │ ├── CoreDrivers.wxs │ ├── CoreEmulator.wxs │ ├── CorePlatform.wxs │ ├── CorePlatformEndian.wxs │ ├── Debugger.wxs │ ├── EmulatorSamples.wxs │ ├── Features.wixproj │ ├── NetMFv44.wxs │ ├── PSDKDocsFeature.wxs │ ├── SamplesFeature.wixproj │ ├── SamplesFeature.wxs │ └── Tools.wxs ├── Include │ ├── Docs.Common.wxs │ ├── common.wxs │ ├── defines.wxs │ ├── devenv_setup.wxs │ ├── mergecrt.wxs │ ├── prereq.wxs │ ├── setup.ico │ └── vs_skus │ │ ├── VBExpress10.wxs │ │ ├── VCSharpExpress10.wxs │ │ ├── VCSharpExpress9.wxs │ │ ├── VisualStudio10.wxs │ │ ├── VisualStudio11.wxs │ │ ├── VisualStudio9.wxs │ │ ├── WDExpress11.wxs │ │ └── __vs_common.wxs ├── LIB │ ├── Bitmaps │ │ ├── New.ico │ │ ├── Up.ico │ │ ├── bannrbmp.bmp │ │ ├── dlgbmp.bmp │ │ ├── exclamic.ico │ │ └── info.ico │ ├── New.ico │ ├── Up.ico │ ├── WixUI_2.0.5805.0_en-us.wxl │ ├── WixUI_en-us.wxl │ ├── bannrbmp.bmp │ ├── dlgbmp.bmp │ ├── exclamic.ico │ ├── info.ico │ ├── wixui.wixlib │ ├── wixui_featuretree.wixlib │ ├── wixui_minimal.wixlib │ └── wixui_mondo.wixlib ├── Misc │ └── Fonts.wixproj ├── ProductSDK │ ├── License.rtf │ ├── Micro Framework SDK Release notes.txt │ ├── Product.wixproj │ ├── Product.wxs │ ├── REDIST.TXT │ ├── Symbols.archive │ ├── Symbols.index │ ├── VsixPackages.dirproj │ └── autorun.inf ├── UI │ ├── Binary │ │ ├── NewBinary1.ibd │ │ ├── NewBinary10.ibd │ │ ├── NewBinary11.ibd │ │ ├── NewBinary12.ibd │ │ ├── NewBinary13.ibd │ │ ├── NewBinary14.ibd │ │ ├── NewBinary15.ibd │ │ ├── NewBinary16.ibd │ │ ├── NewBinary17.ibd │ │ ├── NewBinary18.ibd │ │ ├── NewBinary2.ibd │ │ ├── NewBinary3.ibd │ │ ├── NewBinary4.ibd │ │ ├── NewBinary5.ibd │ │ ├── NewBinary6.ibd │ │ ├── NewBinary7.ibd │ │ ├── NewBinary8.ibd │ │ └── NewBinary9.ibd │ ├── FrameworkSetupUI.wixproj │ └── FrameworkSetupUI.wxs ├── UnManagedAssemblies │ ├── BuildHelper.wixproj │ ├── Crypto.wixproj │ ├── MetaDataProcessor.wixproj │ ├── TFConvert.wixproj │ ├── TinyCLR.wixproj │ └── build.dirproj ├── build.dirproj ├── sdkversion.xml └── updateLicensesAndRleaseNotes.cmd ├── std_vcxproj.props └── tools ├── AssemblyInfo.cs.template ├── AssemblyInfo.rc.template ├── AssemblyInfo.vb.template ├── DisAsmPE ├── DisAsmPE.sln ├── DisAsmPE │ ├── CommonFormatting.cpp │ ├── CommonFormatting.h │ ├── DisAsmPE.cpp │ ├── DisAsmPE.vcxproj │ ├── DisAsmPE.vcxproj.filters │ ├── DumpIlOpCodes.cpp │ ├── DumpSignatures.cpp │ ├── Graphics.h │ ├── MemoryMappedFile.h │ ├── OutputDebugStream.h │ ├── Win32FileIO.h │ ├── Win32Handles.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Include │ ├── EnumFlags.h │ ├── MetadataModel.h │ ├── MetadataTables.h │ ├── ScopeGuard.h │ ├── UnalignedAccess.h │ ├── Utilities.h │ └── opcode.def ├── NETMF.PE.Metadata │ ├── CRC.cpp │ ├── GeneratedStringTableData.cpp │ ├── MetaDataTables.cpp │ ├── NETMF.PE.Metadata.vcxproj │ ├── NETMF.PE.Metadata.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── readme.md ├── SerialXonXoffTest ├── SerialXonXoff.sln └── SerialXonXoff │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Native.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── SerialXonXoff.csproj │ └── Streams.cs ├── Targets ├── Microsoft.SPOT.AutomatedBuild.Branch.Targets ├── Microsoft.SPOT.Build.Base.Targets ├── Microsoft.SPOT.Build.Common.Settings ├── Microsoft.SPOT.Build.Common.Targets ├── Microsoft.SPOT.Build.Configuration.Settings ├── Microsoft.SPOT.Build.Host.Targets ├── Microsoft.SPOT.Build.Setup.Targets ├── Microsoft.SPOT.Build.Targets ├── Microsoft.SPOT.CSharp.Host.Targets ├── Microsoft.SPOT.CSharp.Targets ├── Microsoft.SPOT.Common.Targets ├── Microsoft.SPOT.CommonAssemblyInfo.Targets ├── Microsoft.SPOT.SDK.Targets ├── Microsoft.SPOT.Support.Settings ├── Microsoft.SPOT.System.Interop.Settings ├── Microsoft.SPOT.System.Manifest.Targets ├── Microsoft.SPOT.System.Settings ├── Microsoft.SPOT.System.Targets ├── Microsoft.SPOT.System.Windows.Debug.vsprops ├── Microsoft.SPOT.System.Windows.Release.vsprops ├── Microsoft.SPOT.System.Windows.vsprops ├── Microsoft.SPOT.System.x86.Targets ├── Microsoft.SPOT.Targets ├── Microsoft.SPOT.Tasks.settings ├── Microsoft.SPOT.Tasks.settings.port ├── Microsoft.SPOT.Test.CSharp.Host.Targets ├── Microsoft.SPOT.Test.CSharp.Targets ├── Microsoft.SPOT.Test.VisualBasic.Host.Targets ├── Microsoft.SPOT.Test.VisualBasic.Targets ├── Microsoft.SPOT.Tools.settings ├── Microsoft.SPOT.VSTemplate.Targets ├── Microsoft.SPOT.VisualBasic.Targets ├── Microsoft.SPOT.WiX.Targets ├── Microsoft.Spot.system.HalIncludes.settings ├── Microsoft.Spot.system.gcc.settings ├── Microsoft.Spot.system.gcc.targets ├── Microsoft.Spot.system.mdk.settings ├── Microsoft.Spot.system.mdk.targets ├── Microsoft.Spot.system.x86.settings └── startfile.specs ├── UsbTest ├── ParamParser.cpp ├── ParamParser.h ├── ReadMe.txt ├── SPOT_USB_TEST.cpp ├── SPOT_USB_TEST.sln ├── SPOT_USB_TEST.vcproj ├── excpt.cpp ├── excpt.h ├── stdafx.cpp ├── stdafx.h ├── stringhelp.cpp ├── stringhelp.h └── testpat.txt ├── bin ├── BLANK.KEY ├── tinybooter_metadataprocessor_key_readme.txt ├── tinybooter_private_key.bin ├── tinybooter_private_key_1.txt ├── tinybooter_public_key.bin └── tinybooter_public_key_1.txt ├── binToSrec ├── App.ico ├── AssemblyInfo.cs ├── binToSrec.cs ├── binToSrec.csproj ├── binToSrec.sln └── readme.txt ├── make ├── ADSwrapper.cmd ├── Feedback │ └── Feedback_FixMultiSections.cmd ├── Profile_Map1.pl ├── gcc │ ├── EraseDeployment_iMXS_FLASH_linkerScript.ld │ ├── ProfileDump_iMXS_FLASH_linkerScript.ld │ ├── ProfileDump_iMXS_RAM_linkerScript.ld │ └── TinyCLR_iMXS_FLASH_linkerScript.ld ├── h2inc.pl └── unique.pl ├── scripts ├── Build-netmf.psm1 ├── GetFunctsFromProfileDump.cmd ├── GetFunctsFromStackDump.cmd ├── PrepareLibsForConcat.cmd ├── Preprocess.js ├── build_tests.cmd ├── dump_serial.cmd ├── init.cmd ├── packpath.cmd ├── port │ ├── BinaryCopyList.txt │ ├── EMPTY.KEY │ ├── InternalSetArcVars.cmd │ ├── Sample │ │ ├── Application │ │ │ ├── Main.cs │ │ │ ├── Resources.designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Sample.csproj │ │ │ ├── small.fntdef │ │ │ └── small.tinyfnt │ │ ├── ButtonLib │ │ │ ├── ButtonLib.csproj │ │ │ ├── GPIOButtonInputProvider.cs │ │ │ └── Pins.cs │ │ ├── HelloWorld │ │ │ ├── HelloWorld.csproj │ │ │ └── Main.cs │ │ ├── InteropSample │ │ │ ├── InteropManagedCode │ │ │ │ ├── InteropSample.csproj │ │ │ │ ├── InteropSampleBasicTypes.cs │ │ │ │ └── InteropSampleMain.cs │ │ │ └── InteropNativeCode │ │ │ │ ├── SPOT_InteropSample.vcproj │ │ │ │ ├── SPOT_InteropSample_Native.cpp │ │ │ │ ├── SPOT_InteropSample_Native.h │ │ │ │ ├── SPOT_InteropSample_Native_Microsoft_SPOT_Interop_TestBasicTypes.cpp │ │ │ │ ├── SPOT_InteropSample_Native_Microsoft_SPOT_Interop_TestBasicTypes.h │ │ │ │ ├── SPOT_InteropSample_Native_Microsoft_SPOT_Interop_TestBasicTypes_mshl.cpp │ │ │ │ ├── SPOT_InteropSample_fastcompile.cpp │ │ │ │ ├── Spot_InteropSample_Native_Microsoft_SPOT_Interop_TestCallback.cpp │ │ │ │ ├── Spot_InteropSample_Native_Microsoft_SPOT_Interop_TestCallback.h │ │ │ │ ├── Spot_InteropSample_Native_Microsoft_SPOT_Interop_TestCallback_mshl.cpp │ │ │ │ ├── Spot_InteropSample_Native_Microsoft_SPOT_Interop_TestNonStaticFunctions.cpp │ │ │ │ ├── Spot_InteropSample_Native_Microsoft_SPOT_Interop_TestNonStaticFunctions.h │ │ │ │ ├── Spot_InteropSample_Native_Microsoft_SPOT_Interop_TestNonStaticFunctions__TestInternalType.cpp │ │ │ │ ├── Spot_InteropSample_Native_Microsoft_SPOT_Interop_TestNonStaticFunctions__TestInternalType.h │ │ │ │ ├── Spot_InteropSample_Native_Microsoft_SPOT_Interop_TestNonStaticFunctions__TestInternalType_mshl.cpp │ │ │ │ ├── Spot_InteropSample_Native_Microsoft_SPOT_Interop_TestNonStaticFunctions_mshl.cpp │ │ │ │ └── dotNetMF.proj │ │ ├── LCD │ │ │ ├── lcd.cs │ │ │ └── lcd.csproj │ │ ├── Network │ │ │ ├── loop.cs │ │ │ └── network.csproj │ │ ├── SystemAssemblies.datproj │ │ ├── Test │ │ │ ├── Helper │ │ │ │ ├── Helper.cs │ │ │ │ └── Helper.csproj │ │ │ ├── LCD │ │ │ │ ├── LCD.csproj │ │ │ │ ├── Main.cs │ │ │ │ ├── Resources.designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ └── Resources │ │ │ │ │ ├── Gif01Normal.gif │ │ │ │ │ ├── Jpeg01Normal.jpg │ │ │ │ │ ├── ninabd18ppem.fntdef │ │ │ │ │ ├── ninabd18ppem.tinyfnt │ │ │ │ │ ├── out0.bmp │ │ │ │ │ ├── out1.bmp │ │ │ │ │ ├── out2.bmp │ │ │ │ │ └── spotlogo110.bmp │ │ │ ├── Template │ │ │ │ ├── Main.cs │ │ │ │ └── Template.csproj │ │ │ ├── Threads │ │ │ │ ├── Main.cs │ │ │ │ └── Threads.csproj │ │ │ ├── Timers │ │ │ │ ├── Main.cs │ │ │ │ └── Timers.csproj │ │ │ └── build.dirproj │ │ └── build.dirproj │ ├── SetArmVars.cmd │ ├── SourceCopyList.txt │ └── samples.build.dirproj ├── prop_feedback_files.cmd ├── remove_empty_dirs.cmd └── sign_file.cmd └── util ├── AddResource ├── AddResource.cpp ├── AddResource.vcproj ├── stdafx.cpp └── stdafx.h └── GetBin4Sign ├── GetBin4Sign.sln └── GetBin4Sign ├── GetBin4Sign.csproj ├── GetBin4Sign.csproj.user ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable eol normalization 2 | * -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/.gitignore -------------------------------------------------------------------------------- /Application/TinyBooter/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Application/TinyBooter/Commands.cpp -------------------------------------------------------------------------------- /Application/TinyBooter/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Application/TinyBooter/Commands.h -------------------------------------------------------------------------------- /Application/TinyBooter/Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Application/TinyBooter/Keys.h -------------------------------------------------------------------------------- /Application/TinyBooter/TinyBooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Application/TinyBooter/TinyBooter.cpp -------------------------------------------------------------------------------- /Application/TinyBooter/TinyBooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Application/TinyBooter/TinyBooter.h -------------------------------------------------------------------------------- /Application/TinyBooter/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Application/TinyBooter/dotNetMF.proj -------------------------------------------------------------------------------- /Application/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Application/dotNetMF.proj -------------------------------------------------------------------------------- /Assets/Logos/NETMF-logo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Assets/Logos/NETMF-logo.xaml -------------------------------------------------------------------------------- /BuildEnv.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/BuildEnv.props -------------------------------------------------------------------------------- /CLR/Core/AVLTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/AVLTree.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_DblLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_DblLinkedList.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_HeapBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_HeapBlock.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_HeapBlock_Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_HeapBlock_Array.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_HeapBlock_Lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_HeapBlock_Lock.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_HeapBlock_Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_HeapBlock_Node.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_HeapBlock_Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_HeapBlock_Queue.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_HeapBlock_Stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_HeapBlock_Stack.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_HeapBlock_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_HeapBlock_String.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_HeapBlock_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_HeapBlock_Timer.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_HeapCluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_HeapCluster.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_Interop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_Interop.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_Memory.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_MemoryRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_MemoryRange.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_RuntimeMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_RuntimeMemory.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_StackFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_StackFrame.cpp -------------------------------------------------------------------------------- /CLR/Core/CLR_RT_UnicodeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/CLR_RT_UnicodeHelper.cpp -------------------------------------------------------------------------------- /CLR/Core/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Cache.cpp -------------------------------------------------------------------------------- /CLR/Core/Cache_Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Cache_Win32.cpp -------------------------------------------------------------------------------- /CLR/Core/Checks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Checks.cpp -------------------------------------------------------------------------------- /CLR/Core/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Core.cpp -------------------------------------------------------------------------------- /CLR/Core/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Core.h -------------------------------------------------------------------------------- /CLR/Core/Core.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Core.vcproj -------------------------------------------------------------------------------- /CLR/Core/Core_fastcompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Core_fastcompile.cpp -------------------------------------------------------------------------------- /CLR/Core/Execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Execution.cpp -------------------------------------------------------------------------------- /CLR/Core/FileStore_Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/FileStore_Win32.cpp -------------------------------------------------------------------------------- /CLR/Core/GarbageCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/GarbageCollector.cpp -------------------------------------------------------------------------------- /CLR/Core/GarbageCollector_Info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/GarbageCollector_Info.cpp -------------------------------------------------------------------------------- /CLR/Core/Hardware/Hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Hardware/Hardware.cpp -------------------------------------------------------------------------------- /CLR/Core/Hardware/Hardware.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Hardware/Hardware.vcproj -------------------------------------------------------------------------------- /CLR/Core/Hardware/Hardware_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Hardware/Hardware_stub.cpp -------------------------------------------------------------------------------- /CLR/Core/Hardware/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Hardware/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Core/Hardware/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Hardware/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Core/I2C/I2C.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/I2C/I2C.vcproj -------------------------------------------------------------------------------- /CLR/Core/I2C/I2C_stub.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/I2C/I2C_stub.vcproj -------------------------------------------------------------------------------- /CLR/Core/I2C/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/I2C/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Core/I2C/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/I2C/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Core/I2C/i2c_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/I2C/i2c_stub.cpp -------------------------------------------------------------------------------- /CLR/Core/IOPort/IOPort.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/IOPort/IOPort.vcproj -------------------------------------------------------------------------------- /CLR/Core/IOPort/IOPort_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/IOPort/IOPort_stub.cpp -------------------------------------------------------------------------------- /CLR/Core/IOPort/IOPort_stub.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/IOPort/IOPort_stub.vcproj -------------------------------------------------------------------------------- /CLR/Core/IOPort/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/IOPort/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Core/IOPort/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/IOPort/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Core/InteropAssembliesTable.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/InteropAssembliesTable.proj -------------------------------------------------------------------------------- /CLR/Core/Interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Interpreter.cpp -------------------------------------------------------------------------------- /CLR/Core/Jitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Jitter.cpp -------------------------------------------------------------------------------- /CLR/Core/Jitter_ARM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Jitter_ARM.cpp -------------------------------------------------------------------------------- /CLR/Core/Jitter_ARM_Emulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Jitter_ARM_Emulation.cpp -------------------------------------------------------------------------------- /CLR/Core/Jitter_ARM_Opcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Jitter_ARM_Opcodes.cpp -------------------------------------------------------------------------------- /CLR/Core/Jitter_EvalStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Jitter_EvalStack.cpp -------------------------------------------------------------------------------- /CLR/Core/Jitter_Execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Jitter_Execution.cpp -------------------------------------------------------------------------------- /CLR/Core/Jitter_Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Jitter_Helper.cpp -------------------------------------------------------------------------------- /CLR/Core/Jitter_Opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Jitter_Opcode.cpp -------------------------------------------------------------------------------- /CLR/Core/Jitter_Support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Jitter_Support.cpp -------------------------------------------------------------------------------- /CLR/Core/ParseOptions_Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/ParseOptions_Win32.cpp -------------------------------------------------------------------------------- /CLR/Core/RPC/RPC.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/RPC/RPC.vcproj -------------------------------------------------------------------------------- /CLR/Core/RPC/RPC_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/RPC/RPC_stub.cpp -------------------------------------------------------------------------------- /CLR/Core/RPC/RPC_stub.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/RPC/RPC_stub.vcproj -------------------------------------------------------------------------------- /CLR/Core/RPC/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/RPC/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Core/RPC/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/RPC/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Core/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Random.cpp -------------------------------------------------------------------------------- /CLR/Core/Serialization/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Serialization/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Core/Stream/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Stream/FileStream.cpp -------------------------------------------------------------------------------- /CLR/Core/Stream/Stream.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Stream/Stream.vcproj -------------------------------------------------------------------------------- /CLR/Core/Stream/Stream_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Stream/Stream_stub.cpp -------------------------------------------------------------------------------- /CLR/Core/Stream/Stream_stub.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Stream/Stream_stub.vcproj -------------------------------------------------------------------------------- /CLR/Core/Stream/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Stream/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Core/Stream/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Stream/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Core/Streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Streams.cpp -------------------------------------------------------------------------------- /CLR/Core/StringTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/StringTable.cpp -------------------------------------------------------------------------------- /CLR/Core/StringTableData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/StringTableData.cpp -------------------------------------------------------------------------------- /CLR/Core/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Thread.cpp -------------------------------------------------------------------------------- /CLR/Core/TypeSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/TypeSystem.cpp -------------------------------------------------------------------------------- /CLR/Core/TypeSystemLookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/TypeSystemLookup.cpp -------------------------------------------------------------------------------- /CLR/Core/Various.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Various.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/Xml.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/Xml.vcproj -------------------------------------------------------------------------------- /CLR/Core/Xml/XmlCharRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/XmlCharRef.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/XmlCharType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/XmlCharType.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/XmlNameTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/XmlNameTable.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/XmlReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/XmlReader.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/XmlState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/XmlState.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/XmlState_InAttribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/XmlState_InAttribute.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/XmlState_InName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/XmlState_InName.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/XmlState_InValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/XmlState_InValue.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/XmlState_NewTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/XmlState_NewTag.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/XmlState_Start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/XmlState_Start.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/Xml_fastcompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/Xml_fastcompile.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/Xml_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/Xml_stub.cpp -------------------------------------------------------------------------------- /CLR/Core/Xml/Xml_stub.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/Xml_stub.vcproj -------------------------------------------------------------------------------- /CLR/Core/Xml/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Core/Xml/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/Xml/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Core/XmlUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/XmlUtil.cpp -------------------------------------------------------------------------------- /CLR/Core/corhdr_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/corhdr_private.h -------------------------------------------------------------------------------- /CLR/Core/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Core/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Debugger/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/Debugger.cpp -------------------------------------------------------------------------------- /CLR/Debugger/Debugger.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/Debugger.vcproj -------------------------------------------------------------------------------- /CLR/Debugger/Debugger_extended.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/Debugger_extended.cpp -------------------------------------------------------------------------------- /CLR/Debugger/Debugger_full.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/Debugger_full.cpp -------------------------------------------------------------------------------- /CLR/Debugger/Debugger_minimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/Debugger_minimal.cpp -------------------------------------------------------------------------------- /CLR/Debugger/Debugger_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/Debugger_stub.cpp -------------------------------------------------------------------------------- /CLR/Debugger/Debugger_stub.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/Debugger_stub.vcproj -------------------------------------------------------------------------------- /CLR/Debugger/debugger_extended.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/debugger_extended.vcproj -------------------------------------------------------------------------------- /CLR/Debugger/debugger_full.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/debugger_full.vcproj -------------------------------------------------------------------------------- /CLR/Debugger/debugger_minimal.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/debugger_minimal.vcproj -------------------------------------------------------------------------------- /CLR/Debugger/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Debugger/dotNetMF_extended.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/dotNetMF_extended.proj -------------------------------------------------------------------------------- /CLR/Debugger/dotNetMF_full.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/dotNetMF_full.proj -------------------------------------------------------------------------------- /CLR/Debugger/dotNetMF_minimal.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/dotNetMF_minimal.proj -------------------------------------------------------------------------------- /CLR/Debugger/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Debugger/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Diagnostics/Diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Diagnostics/Diagnostics.h -------------------------------------------------------------------------------- /CLR/Diagnostics/Diagnostics.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Diagnostics/Diagnostics.vcproj -------------------------------------------------------------------------------- /CLR/Diagnostics/Diagnostics_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Diagnostics/Diagnostics_stub.cpp -------------------------------------------------------------------------------- /CLR/Diagnostics/Info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Diagnostics/Info.cpp -------------------------------------------------------------------------------- /CLR/Diagnostics/Info_Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Diagnostics/Info_Win32.cpp -------------------------------------------------------------------------------- /CLR/Diagnostics/Profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Diagnostics/Profile.cpp -------------------------------------------------------------------------------- /CLR/Diagnostics/Profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Diagnostics/Profiler.cpp -------------------------------------------------------------------------------- /CLR/Diagnostics/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Diagnostics/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Diagnostics/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Diagnostics/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Graphics/Bitmap_Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Bitmap_Win32.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Bmp/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Bmp/Bitmap.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Bmp/Bitmap_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Bmp/Bitmap_stub.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Bmp/Bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Bmp/Bmp.h -------------------------------------------------------------------------------- /CLR/Graphics/Bmp/Graphics_Bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Bmp/Graphics_Bmp.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Bmp/Graphics_Bmp.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Bmp/Graphics_Bmp.vcproj -------------------------------------------------------------------------------- /CLR/Graphics/Bmp/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Bmp/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Graphics/Bmp/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Bmp/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Graphics/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Font.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Font_Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Font_Win32.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Gif/Gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/Gif.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Gif/Gif_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/Gif_stub.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Gif/Graphics_Gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/Graphics_Gif.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Gif/Graphics_Gif.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/Graphics_Gif.vcproj -------------------------------------------------------------------------------- /CLR/Graphics/Gif/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Graphics/Gif/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Graphics/Gif/gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/gif.h -------------------------------------------------------------------------------- /CLR/Graphics/Gif/giffile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/giffile.h -------------------------------------------------------------------------------- /CLR/Graphics/Gif/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/lzw.h -------------------------------------------------------------------------------- /CLR/Graphics/Gif/lzwread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/lzwread.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Gif/lzwread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/lzwread.h -------------------------------------------------------------------------------- /CLR/Graphics/Gif/lzwutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Gif/lzwutil.h -------------------------------------------------------------------------------- /CLR/Graphics/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Graphics.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Graphics.h -------------------------------------------------------------------------------- /CLR/Graphics/Graphics.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Graphics.vcproj -------------------------------------------------------------------------------- /CLR/Graphics/Graphics_fastcompile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Graphics_fastcompile.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Graphics_stub.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Graphics_stub.vcproj -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/Graphics_Jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/Graphics_Jpeg.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/Jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/Jpeg.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/Jpeg_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/Jpeg_stub.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jbytearraydatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jbytearraydatasrc.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcapimin.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcapistd.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jccoefct.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jccolor.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcdctmgr.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jchuff.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jchuff.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcinit.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcmainct.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcmarker.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcmaster.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcomapi.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jconfig.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcparam.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcphuff.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcprepct.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jcsample.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jctrans.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdapimin.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdapistd.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdcoefct.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdcolor.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdct.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jddctmgr.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdhuff.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdhuff.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdinput.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdmainct.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdmarker.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdmaster.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdmerge.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdphuff.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdpostct.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdsample.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jdtrans.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jerror.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jerror.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jfdctflt.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jfdctfst.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jfdctint.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jidctflt.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jidctfst.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jidctint.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jidctred.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jinclude.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jmemmgr.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jmemsys.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jmemtinyclr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jmemtinyclr.cpp -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jmorecfg.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jpegint.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jpeglib.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jquant1.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jquant2.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jutils.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/jversion.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/mcbcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/mcbcr.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/mcbcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/mcbcr.h -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/mfint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/mfint.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/miint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/miint.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/pfint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/pfint.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/piint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/piint.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/transupp.c -------------------------------------------------------------------------------- /CLR/Graphics/Jpeg/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/Jpeg/transupp.h -------------------------------------------------------------------------------- /CLR/Graphics/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Graphics/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/Graphics/graphics_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Graphics/graphics_stub.cpp -------------------------------------------------------------------------------- /CLR/Include/Include.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/Include.vcproj -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Application.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Checks.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Debugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Debugging.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Diagnostics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Diagnostics.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_ErrorCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_ErrorCodes.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Graphics.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Handler.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Hardware.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Interop.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Jitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Jitter.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Jitter_ARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Jitter_ARM.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Messaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Messaging.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_ParseOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_ParseOptions.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_PlatformDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_PlatformDef.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Profiling.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Runtime.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Stream.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Types.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Version.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Win32.h -------------------------------------------------------------------------------- /CLR/Include/TinyCLR_Xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/TinyCLR_Xml.h -------------------------------------------------------------------------------- /CLR/Include/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Include/opcode.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Include/opcode.def -------------------------------------------------------------------------------- /CLR/Jitter/Jitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Jitter/Jitter.cpp -------------------------------------------------------------------------------- /CLR/Jitter/Jitter_ARM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Jitter/Jitter_ARM.cpp -------------------------------------------------------------------------------- /CLR/Jitter/Jitter_ARM_Emulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Jitter/Jitter_ARM_Emulation.cpp -------------------------------------------------------------------------------- /CLR/Jitter/Jitter_ARM_Opcodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Jitter/Jitter_ARM_Opcodes.cpp -------------------------------------------------------------------------------- /CLR/Jitter/Jitter_EvalStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Jitter/Jitter_EvalStack.cpp -------------------------------------------------------------------------------- /CLR/Jitter/Jitter_Execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Jitter/Jitter_Execution.cpp -------------------------------------------------------------------------------- /CLR/Jitter/Jitter_Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Jitter/Jitter_Helper.cpp -------------------------------------------------------------------------------- /CLR/Jitter/Jitter_Opcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Jitter/Jitter_Opcode.cpp -------------------------------------------------------------------------------- /CLR/Jitter/Jitter_Support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Jitter/Jitter_Support.cpp -------------------------------------------------------------------------------- /CLR/Jitter/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Jitter/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Libraries/CorLib/CorLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/CorLib/CorLib.h -------------------------------------------------------------------------------- /CLR/Libraries/CorLib/CorLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/CorLib/CorLib.vcproj -------------------------------------------------------------------------------- /CLR/Libraries/CorLib/corlib_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/CorLib/corlib_native.h -------------------------------------------------------------------------------- /CLR/Libraries/CorLib/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/CorLib/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Libraries/SPOT/SPOT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT/SPOT.h -------------------------------------------------------------------------------- /CLR/Libraries/SPOT/SPOT.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT/SPOT.vcproj -------------------------------------------------------------------------------- /CLR/Libraries/SPOT/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Libraries/SPOT/spot_native.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT/spot_native.cpp -------------------------------------------------------------------------------- /CLR/Libraries/SPOT/spot_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT/spot_native.h -------------------------------------------------------------------------------- /CLR/Libraries/SPOT_IO/SPOT_IO.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT_IO/SPOT_IO.vcproj -------------------------------------------------------------------------------- /CLR/Libraries/SPOT_IO/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT_IO/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Libraries/SPOT_IO/spot_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT_IO/spot_io.h -------------------------------------------------------------------------------- /CLR/Libraries/SPOT_Net/SPOT_Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT_Net/SPOT_Net.h -------------------------------------------------------------------------------- /CLR/Libraries/SPOT_Net/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT_Net/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Libraries/SPOT_Touch/spot_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/SPOT_Touch/spot_touch.h -------------------------------------------------------------------------------- /CLR/Libraries/System_Xml/system_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/System_Xml/system_xml.h -------------------------------------------------------------------------------- /CLR/Libraries/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Libraries/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Messaging/Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Messaging/Messaging.cpp -------------------------------------------------------------------------------- /CLR/Messaging/Messaging.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Messaging/Messaging.vcproj -------------------------------------------------------------------------------- /CLR/Messaging/Messaging_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Messaging/Messaging_stub.cpp -------------------------------------------------------------------------------- /CLR/Messaging/Messaging_stub.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Messaging/Messaging_stub.vcproj -------------------------------------------------------------------------------- /CLR/Messaging/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Messaging/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Messaging/dotNetMF_stub.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Messaging/dotNetMF_stub.proj -------------------------------------------------------------------------------- /CLR/StartupLib/CLRStartup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/StartupLib/CLRStartup.cpp -------------------------------------------------------------------------------- /CLR/StartupLib/CLRStartup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/StartupLib/CLRStartup.h -------------------------------------------------------------------------------- /CLR/StartupLib/CLR_StartUpLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/StartupLib/CLR_StartUpLib.vcproj -------------------------------------------------------------------------------- /CLR/StartupLib/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/StartupLib/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Tools/BuildHelper/BuildHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/BuildHelper/BuildHelper.cpp -------------------------------------------------------------------------------- /CLR/Tools/BuildHelper/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/BuildHelper/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Tools/BuildHelper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/BuildHelper/stdafx.h -------------------------------------------------------------------------------- /CLR/Tools/CorHelper/CorHelper.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/CorHelper/CorHelper.vcproj -------------------------------------------------------------------------------- /CLR/Tools/CorHelper/corhlpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/CorHelper/corhlpr.cpp -------------------------------------------------------------------------------- /CLR/Tools/CorHelper/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/CorHelper/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Tools/CorHelper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/CorHelper/stdafx.cpp -------------------------------------------------------------------------------- /CLR/Tools/CorHelper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/CorHelper/stdafx.h -------------------------------------------------------------------------------- /CLR/Tools/EmulatorInterface/ICom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/EmulatorInterface/ICom.cs -------------------------------------------------------------------------------- /CLR/Tools/EmulatorInterface/IFS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/EmulatorInterface/IFS.cs -------------------------------------------------------------------------------- /CLR/Tools/EmulatorInterface/IGpio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/EmulatorInterface/IGpio.cs -------------------------------------------------------------------------------- /CLR/Tools/EmulatorInterface/IHal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/EmulatorInterface/IHal.cs -------------------------------------------------------------------------------- /CLR/Tools/EmulatorInterface/II2c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/EmulatorInterface/II2c.cs -------------------------------------------------------------------------------- /CLR/Tools/EmulatorInterface/ILcd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/EmulatorInterface/ILcd.cs -------------------------------------------------------------------------------- /CLR/Tools/EmulatorInterface/ISpi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/EmulatorInterface/ISpi.cs -------------------------------------------------------------------------------- /CLR/Tools/EmulatorInterface/ISsl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/EmulatorInterface/ISsl.cs -------------------------------------------------------------------------------- /CLR/Tools/EmulatorInterface/ITime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/EmulatorInterface/ITime.cs -------------------------------------------------------------------------------- /CLR/Tools/EmulatorInterface/IUsb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/EmulatorInterface/IUsb.cs -------------------------------------------------------------------------------- /CLR/Tools/Include/AssemblyParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Include/AssemblyParser.h -------------------------------------------------------------------------------- /CLR/Tools/Include/AssemblyReparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Include/AssemblyReparser.h -------------------------------------------------------------------------------- /CLR/Tools/Include/CorError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Include/CorError.h -------------------------------------------------------------------------------- /CLR/Tools/Include/CorHdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Include/CorHdr.h -------------------------------------------------------------------------------- /CLR/Tools/Include/HAL_Windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Include/HAL_Windows.h -------------------------------------------------------------------------------- /CLR/Tools/Include/Include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Include/Include.cpp -------------------------------------------------------------------------------- /CLR/Tools/Include/cor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Include/cor.h -------------------------------------------------------------------------------- /CLR/Tools/Include/corhlpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Include/corhlpr.h -------------------------------------------------------------------------------- /CLR/Tools/Include/corsym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Include/corsym.h -------------------------------------------------------------------------------- /CLR/Tools/Include/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Include/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Tools/MetaDataProcessor/KeyGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/MetaDataProcessor/KeyGen.h -------------------------------------------------------------------------------- /CLR/Tools/MetaDataProcessor/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/MetaDataProcessor/stdafx.h -------------------------------------------------------------------------------- /CLR/Tools/Parser/AssemblyParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Parser/AssemblyParser.cpp -------------------------------------------------------------------------------- /CLR/Tools/Parser/AssemblyReparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Parser/AssemblyReparser.cpp -------------------------------------------------------------------------------- /CLR/Tools/Parser/ByteCodeParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Parser/ByteCodeParser.cpp -------------------------------------------------------------------------------- /CLR/Tools/Parser/Linker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Parser/Linker.cpp -------------------------------------------------------------------------------- /CLR/Tools/Parser/Parser.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Parser/Parser.vcproj -------------------------------------------------------------------------------- /CLR/Tools/Parser/Support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Parser/Support.cpp -------------------------------------------------------------------------------- /CLR/Tools/Parser/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Parser/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Tools/Parser/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Parser/stdafx.cpp -------------------------------------------------------------------------------- /CLR/Tools/Parser/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Parser/stdafx.h -------------------------------------------------------------------------------- /CLR/Tools/StubWinHal/StubWinHal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/StubWinHal/StubWinHal.cpp -------------------------------------------------------------------------------- /CLR/Tools/StubWinHal/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/StubWinHal/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Tools/StubWinHal/minheap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/StubWinHal/minheap.cpp -------------------------------------------------------------------------------- /CLR/Tools/StubWinHal/mintime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/StubWinHal/mintime.cpp -------------------------------------------------------------------------------- /CLR/Tools/StubWinHal/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/StubWinHal/stdafx.h -------------------------------------------------------------------------------- /CLR/Tools/TFConvert/TFConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/TFConvert/TFConvert.cpp -------------------------------------------------------------------------------- /CLR/Tools/TFConvert/TFConvert.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/TFConvert/TFConvert.vcproj -------------------------------------------------------------------------------- /CLR/Tools/TFConvert/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/TFConvert/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/Tools/TFConvert/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/TFConvert/stdafx.h -------------------------------------------------------------------------------- /CLR/Tools/Tools.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/Tools.settings -------------------------------------------------------------------------------- /CLR/Tools/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/build.dirproj -------------------------------------------------------------------------------- /CLR/Tools/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/Tools/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/build.dirproj -------------------------------------------------------------------------------- /CLR/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/dotNetMF.proj -------------------------------------------------------------------------------- /CLR/dotNetMF.proj.port: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CLR/dotNetMF.proj.port -------------------------------------------------------------------------------- /CMSIS/CMSIS/RTOS/RTX/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CMSIS/CMSIS/RTOS/RTX/dotNetMF.proj -------------------------------------------------------------------------------- /CMSIS/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/CMSIS/ReadMe.md -------------------------------------------------------------------------------- /DeviceCode/Cores/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/Cores/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/Drivers/FS/FAT/FAT_FS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/Drivers/FS/FAT/FAT_FS.cpp -------------------------------------------------------------------------------- /DeviceCode/Drivers/FS/FAT/FAT_FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/Drivers/FS/FAT/FAT_FS.h -------------------------------------------------------------------------------- /DeviceCode/Drivers/FS/FAT/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/Drivers/FS/FAT/fs.cpp -------------------------------------------------------------------------------- /DeviceCode/Drivers/FS/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/Drivers/FS/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/Drivers/TimeService/stubs/fastcompile_timeservice_stubs.cpp: -------------------------------------------------------------------------------- 1 | #include "timeservice_stubs_functions.cpp" 2 | -------------------------------------------------------------------------------- /DeviceCode/Drivers/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/Drivers/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/Initialization/tinyhal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/Initialization/tinyhal.cpp -------------------------------------------------------------------------------- /DeviceCode/Targets/OS/Win32/lwip_1_4_1_os/arch/bpstruct.h: -------------------------------------------------------------------------------- 1 | #pragma pack(push,1) 2 | -------------------------------------------------------------------------------- /DeviceCode/Targets/OS/Win32/lwip_1_4_1_os/arch/epstruct.h: -------------------------------------------------------------------------------- 1 | #pragma pack(pop) 2 | -------------------------------------------------------------------------------- /DeviceCode/Targets/OS/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/Targets/OS/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/Targets/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/Targets/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/UnitTests/PAL/PKCS11/SlotTokenTest.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DeviceCode/UnitTests/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/UnitTests/build.dirproj -------------------------------------------------------------------------------- /DeviceCode/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/include/AnalogOut_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/AnalogOut_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Analog_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Analog_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Backlight_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Backlight_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/COM_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/COM_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/CPU_BOOT_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/CPU_BOOT_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/CPU_CACHE_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/CPU_CACHE_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/CPU_CMU_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/CPU_CMU_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/CPU_DMA_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/CPU_DMA_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/CPU_EBIU_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/CPU_EBIU_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/CPU_GPIO_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/CPU_GPIO_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/CPU_INTC_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/CPU_INTC_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/CPU_MMU_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/CPU_MMU_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/CPU_PCU_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/CPU_PCU_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/CPU_SPI_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/CPU_SPI_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Display_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Display_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Double_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Double_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/FS_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/FS_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/GPIO_button_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/GPIO_button_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Gesture_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Gesture_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Heap_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Heap_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/I2C_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/I2C_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Ink_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Ink_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/LargeBuffer_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/LargeBuffer_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/MFUpdate_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/MFUpdate_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/MicroBooter_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/MicroBooter_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Network_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Network_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/OSIrqLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/OSIrqLock.h -------------------------------------------------------------------------------- /DeviceCode/include/PWM_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/PWM_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Piezo_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Piezo_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/SD_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/SD_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Security_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Security_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/SmartPtr_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/SmartPtr_irq.h -------------------------------------------------------------------------------- /DeviceCode/include/Sockets_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Sockets_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/TimeService_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/TimeService_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/Time_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/Time_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/TinyBooterEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/TinyBooterEntry.h -------------------------------------------------------------------------------- /DeviceCode/include/TinyCLR_Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/TinyCLR_Endian.h -------------------------------------------------------------------------------- /DeviceCode/include/TouchPanel_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/TouchPanel_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/USART_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/USART_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/USB_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/USB_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/VirtualKey_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/VirtualKey_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/drivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/drivers.h -------------------------------------------------------------------------------- /DeviceCode/include/events_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/events_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/graphics_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/graphics_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/io_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/io_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/netmf_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/netmf_errors.h -------------------------------------------------------------------------------- /DeviceCode/include/palevent_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/palevent_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/power_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/power_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/tests.h -------------------------------------------------------------------------------- /DeviceCode/include/tinycrt_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/tinycrt_decl.h -------------------------------------------------------------------------------- /DeviceCode/include/tinyhal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/tinyhal.h -------------------------------------------------------------------------------- /DeviceCode/include/tinyhal_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/tinyhal_types.h -------------------------------------------------------------------------------- /DeviceCode/include/tinypal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/include/tinypal.h -------------------------------------------------------------------------------- /DeviceCode/pal/Buttons/GPIO_Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/Buttons/GPIO_Buttons.h -------------------------------------------------------------------------------- /DeviceCode/pal/Buttons/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/Buttons/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/COM/ComDirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/ComDirector.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/COM/GenericPort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/GenericPort.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/COM/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/COM/i2c/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/i2c/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/COM/i2c/i2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/i2c/i2c.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/COM/i2c/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/i2c/i2c.h -------------------------------------------------------------------------------- /DeviceCode/pal/COM/sockets/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/sockets/sockets.h -------------------------------------------------------------------------------- /DeviceCode/pal/COM/usart/usart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/usart/usart.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/COM/usart/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/usart/usart.h -------------------------------------------------------------------------------- /DeviceCode/pal/COM/usb/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/usb/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/COM/usb/usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/usb/usb.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/COM/usb/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/COM/usb/usb.h -------------------------------------------------------------------------------- /DeviceCode/pal/Double/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/Double/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/Gesture/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/Gesture/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/Ink/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/Ink/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/Ink/ink_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/Ink/ink_driver.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/Ink/ink_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/Ink/ink_driver.h -------------------------------------------------------------------------------- /DeviceCode/pal/Ink/ink_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/Ink/ink_functions.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/MFUpdate/MFUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/MFUpdate/MFUpdate.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/MFUpdate/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/MFUpdate/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/OneWire/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/OneWire/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/Include/openssl/blowfish.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/bf/blowfish.h" 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/Include/openssl/dtls1.h: -------------------------------------------------------------------------------- 1 | #include "../../ssl/dtls1.h" 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/Include/openssl/e_os2.h: -------------------------------------------------------------------------------- 1 | #include "../../e_os2.h" 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/Include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ebcdic.h" 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/Include/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/opensslconf.h" 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/Include/openssl/opensslv.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/opensslv.h" 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/Include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/ossl_typ.h" 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/Include/openssl/symhacks.h: -------------------------------------------------------------------------------- 1 | #include "../../crypto/symhacks.h" 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/Include/openssl/tls1.h: -------------------------------------------------------------------------------- 1 | #include "../../ssl/tls1.h" 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/VMS/socketshr_shr.opt: -------------------------------------------------------------------------------- 1 | socketshr/share 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/VMS/ucx_shr_decc_log.opt: -------------------------------------------------------------------------------- 1 | ucx$ipc_shr/share 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/apps/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/apps/demoCA/serial: -------------------------------------------------------------------------------- 1 | 011E 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/apps/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/crypto/bn/asm/x86/f: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/demos/pkcs12/README: -------------------------------------------------------------------------------- 1 | PKCS#12 demo applications 2 | 3 | Written by Steve Henson. 4 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/ms/certCA.srl: -------------------------------------------------------------------------------- 1 | 1D 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/shlib/README: -------------------------------------------------------------------------------- 1 | Only the windows NT and, linux builds have been tested for SSLeay 0.8.0 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/test/VMSca-response.1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/test/VMSca-response.2: -------------------------------------------------------------------------------- 1 | y 2 | y 3 | -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/test/smcont.txt: -------------------------------------------------------------------------------- 1 | Some test content for OpenSSL CMS -------------------------------------------------------------------------------- /DeviceCode/pal/OpenSSL/OpenSSL_1_0_0/tinyclr/file.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Cryptoki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Cryptoki.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/CryptokiPAL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/CryptokiPAL.h -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Digest.h -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/DualCrypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/DualCrypto.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/DualCrypto.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Encryption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Encryption.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Encryption.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Keys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Keys.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Keys.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Object.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Object.h -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Random.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Random.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Session.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Session.h -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Signature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Signature.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Signature.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Slot.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/Slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/Slot.h -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/cryptoki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/cryptoki.h -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/ct-kip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/ct-kip.h -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/otp-pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/otp-pkcs11.h -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/pkcs11.h -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/pkcs11f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/pkcs11f.h -------------------------------------------------------------------------------- /DeviceCode/pal/PKCS11/pkcs11t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/PKCS11/pkcs11t.h -------------------------------------------------------------------------------- /DeviceCode/pal/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/events/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/events/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/events/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/events/events.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/fs/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/fs/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/fs/fs_pal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/fs/fs_pal.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/fs/stubs/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/fs/stubs/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/fs/stubs/fs_stubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/fs/stubs/fs_stubs.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/graphics/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/graphics/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/graphics/graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/graphics/graphics.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/graphics/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/graphics/graphics.h -------------------------------------------------------------------------------- /DeviceCode/pal/heap/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/heap/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/heap/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/heap/heap.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/io/GPIO_Output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/io/GPIO_Output.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/io/GPIO_Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/io/GPIO_Output.h -------------------------------------------------------------------------------- /DeviceCode/pal/io/OUTPUT_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/io/OUTPUT_config.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/io/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/io/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/io/stubs/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/io/stubs/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/lwip_1_4_1_os/lwip/src/core/ipv6/README: -------------------------------------------------------------------------------- 1 | IPv6 support in lwIP is very experimental. 2 | -------------------------------------------------------------------------------- /DeviceCode/pal/net/Network_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/net/Network_defines.h -------------------------------------------------------------------------------- /DeviceCode/pal/net/net_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/net/net_decl.h -------------------------------------------------------------------------------- /DeviceCode/pal/net/net_decl_lwip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/net/net_decl_lwip.h -------------------------------------------------------------------------------- /DeviceCode/pal/palevent/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/palevent/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/piezo/Piezo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/piezo/Piezo.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/piezo/Piezo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/piezo/Piezo.h -------------------------------------------------------------------------------- /DeviceCode/pal/piezo/Piezo_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/piezo/Piezo_config.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/piezo/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/piezo/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/time/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/time/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/time/time_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/time/time_driver.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/time/time_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/time/time_driver.h -------------------------------------------------------------------------------- /DeviceCode/pal/tinycrt/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/tinycrt/dotNetMF.proj -------------------------------------------------------------------------------- /DeviceCode/pal/tinycrt/tinycrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/tinycrt/tinycrt.cpp -------------------------------------------------------------------------------- /DeviceCode/pal/watchdog/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/DeviceCode/pal/watchdog/dotNetMF.proj -------------------------------------------------------------------------------- /Fonts/NinaB.tinyfnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Fonts/NinaB.tinyfnt -------------------------------------------------------------------------------- /Fonts/small.tinyfnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Fonts/small.tinyfnt -------------------------------------------------------------------------------- /Framework/CorDebug/ConnectionPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/ConnectionPoint.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebug.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugChain.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugClass.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugCode.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugEnum.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugEval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugEval.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugFrame.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugProcess.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugStepper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugStepper.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugThread.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugType.cs -------------------------------------------------------------------------------- /Framework/CorDebug/CorDebugValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/CorDebugValue.cs -------------------------------------------------------------------------------- /Framework/CorDebug/DebugEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/DebugEvent.cs -------------------------------------------------------------------------------- /Framework/CorDebug/DebugPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/DebugPort.cs -------------------------------------------------------------------------------- /Framework/CorDebug/Extenders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/Extenders.cs -------------------------------------------------------------------------------- /Framework/CorDebug/Intellisense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/Intellisense.cs -------------------------------------------------------------------------------- /Framework/CorDebug/MessageCentre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/MessageCentre.cs -------------------------------------------------------------------------------- /Framework/CorDebug/Pdbx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/Pdbx.cs -------------------------------------------------------------------------------- /Framework/CorDebug/PropertyPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/PropertyPage.cs -------------------------------------------------------------------------------- /Framework/CorDebug/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/Utility.cs -------------------------------------------------------------------------------- /Framework/CorDebug/VsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/VsPackage.cs -------------------------------------------------------------------------------- /Framework/CorDebug/VsProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/VsProject.cs -------------------------------------------------------------------------------- /Framework/CorDebug/WixVSCommon.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/CorDebug/WixVSCommon.wxs -------------------------------------------------------------------------------- /Framework/Core/Native/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/Native/Debug.cs -------------------------------------------------------------------------------- /Framework/Core/Native/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/Native/Delegates.cs -------------------------------------------------------------------------------- /Framework/Core/Native/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/Native/EventArgs.cs -------------------------------------------------------------------------------- /Framework/Core/Native/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/Native/Math.cs -------------------------------------------------------------------------------- /Framework/Core/Native/Messaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/Native/Messaging.cs -------------------------------------------------------------------------------- /Framework/Core/Native/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/Native/Resources.cs -------------------------------------------------------------------------------- /Framework/Core/Native/Timers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/Native/Timers.cs -------------------------------------------------------------------------------- /Framework/Core/Native_IO/IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/Native_IO/IO.cs -------------------------------------------------------------------------------- /Framework/Core/Native_Touch/Ink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/Native_Touch/Ink.cs -------------------------------------------------------------------------------- /Framework/Core/RPC/RPC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/RPC/RPC.csproj -------------------------------------------------------------------------------- /Framework/Core/RPC/RpcClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/RPC/RpcClient.cs -------------------------------------------------------------------------------- /Framework/Core/RPC/RpcServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/RPC/RpcServer.cs -------------------------------------------------------------------------------- /Framework/Core/System/IO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/System/IO.csproj -------------------------------------------------------------------------------- /Framework/Core/System/IO/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/System/IO/File.cs -------------------------------------------------------------------------------- /Framework/Core/System/IO/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/System/IO/Path.cs -------------------------------------------------------------------------------- /Framework/Core/System/Xml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/System/Xml.csproj -------------------------------------------------------------------------------- /Framework/Core/Update/MFUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/Update/MFUpdate.cs -------------------------------------------------------------------------------- /Framework/Core/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Core/build.dirproj -------------------------------------------------------------------------------- /Framework/Debugger/AbortHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/AbortHandler.cs -------------------------------------------------------------------------------- /Framework/Debugger/BitStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/BitStream.cs -------------------------------------------------------------------------------- /Framework/Debugger/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/CRC.cs -------------------------------------------------------------------------------- /Framework/Debugger/Debugger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/Debugger.csproj -------------------------------------------------------------------------------- /Framework/Debugger/Emulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/Emulator.cs -------------------------------------------------------------------------------- /Framework/Debugger/EndPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/EndPoint.cs -------------------------------------------------------------------------------- /Framework/Debugger/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/Message.cs -------------------------------------------------------------------------------- /Framework/Debugger/PlatformInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/PlatformInfo.cs -------------------------------------------------------------------------------- /Framework/Debugger/SRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/SRecord.cs -------------------------------------------------------------------------------- /Framework/Debugger/SymDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/SymDef.cs -------------------------------------------------------------------------------- /Framework/Debugger/portBooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Debugger/portBooter.cs -------------------------------------------------------------------------------- /Framework/Features/I2C.featureproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Features/I2C.featureproj -------------------------------------------------------------------------------- /Framework/Features/Ink.featureproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Features/Ink.featureproj -------------------------------------------------------------------------------- /Framework/Features/OS.libcatproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Features/OS.libcatproj -------------------------------------------------------------------------------- /Framework/Features/PWM.featureproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Features/PWM.featureproj -------------------------------------------------------------------------------- /Framework/Features/RPC.featureproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Features/RPC.featureproj -------------------------------------------------------------------------------- /Framework/Features/SD.featureproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Features/SD.featureproj -------------------------------------------------------------------------------- /Framework/Features/SPI.featureproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Features/SPI.featureproj -------------------------------------------------------------------------------- /Framework/Features/SSL.featureproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Features/SSL.featureproj -------------------------------------------------------------------------------- /Framework/Features/Usb.featureproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Features/Usb.featureproj -------------------------------------------------------------------------------- /Framework/Features/XML.featureproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Features/XML.featureproj -------------------------------------------------------------------------------- /Framework/IDE/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/IDE/build.dirproj -------------------------------------------------------------------------------- /Framework/PKCS11/Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/Certificate.cs -------------------------------------------------------------------------------- /Framework/PKCS11/Decrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/Decrypt.cs -------------------------------------------------------------------------------- /Framework/PKCS11/Digest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/Digest.cs -------------------------------------------------------------------------------- /Framework/PKCS11/DualCrypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/DualCrypto.cs -------------------------------------------------------------------------------- /Framework/PKCS11/Encrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/Encrypt.cs -------------------------------------------------------------------------------- /Framework/PKCS11/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/Key.cs -------------------------------------------------------------------------------- /Framework/PKCS11/Mechanism.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/Mechanism.cs -------------------------------------------------------------------------------- /Framework/PKCS11/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/Object.cs -------------------------------------------------------------------------------- /Framework/PKCS11/PKCS11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/PKCS11.cs -------------------------------------------------------------------------------- /Framework/PKCS11/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/Random.cs -------------------------------------------------------------------------------- /Framework/PKCS11/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/Session.cs -------------------------------------------------------------------------------- /Framework/PKCS11/Signing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/Signing.cs -------------------------------------------------------------------------------- /Framework/PKCS11/SlotToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/PKCS11/SlotToken.cs -------------------------------------------------------------------------------- /Framework/TinyCore/Ink.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/TinyCore/Ink.csproj -------------------------------------------------------------------------------- /Framework/TinyCore/Input/Touch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/TinyCore/Input/Touch.cs -------------------------------------------------------------------------------- /Framework/TinyCore/TinyCore.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/TinyCore/TinyCore.cd -------------------------------------------------------------------------------- /Framework/TinyCore/TinyCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/TinyCore/TinyCore.csproj -------------------------------------------------------------------------------- /Framework/Tools/BuildTasks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/BuildTasks.sln -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Com.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Com.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Digest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Digest.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Events.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/FS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/FS.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Gpio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Gpio.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Hal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Hal.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/I2c.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/I2c.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Keys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Keys.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Lcd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Lcd.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Memory.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Random.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Serial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Serial.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Spi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Spi.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Ssl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Ssl.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Time.cs -------------------------------------------------------------------------------- /Framework/Tools/Emulator/Usb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/Emulator/Usb.cs -------------------------------------------------------------------------------- /Framework/Tools/SerialDump/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/SerialDump/App.ico -------------------------------------------------------------------------------- /Framework/Tools/SerialDump/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/SerialDump/Main.cs -------------------------------------------------------------------------------- /Framework/Tools/WiXLib/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/WiXLib/File.cs -------------------------------------------------------------------------------- /Framework/Tools/WiXLib/Fragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/WiXLib/Fragment.cs -------------------------------------------------------------------------------- /Framework/Tools/WiXLib/Shortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/WiXLib/Shortcut.cs -------------------------------------------------------------------------------- /Framework/Tools/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/build.dirproj -------------------------------------------------------------------------------- /Framework/Tools/buildTasks.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/Tools/buildTasks.dirproj -------------------------------------------------------------------------------- /Framework/UnitTest/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/UnitTest/build.dirproj -------------------------------------------------------------------------------- /Framework/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/build.dirproj -------------------------------------------------------------------------------- /Framework/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Framework/key.snk -------------------------------------------------------------------------------- /Install-BinTools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Install-BinTools.ps1 -------------------------------------------------------------------------------- /Install-CMSIS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Install-CMSIS.ps1 -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/License.txt -------------------------------------------------------------------------------- /PK.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/PK.proj -------------------------------------------------------------------------------- /Product/AllSDK/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Product/AllSDK/build.dirproj -------------------------------------------------------------------------------- /Product/Samples/Clock/Clock.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Product/Samples/Clock/Clock.sln -------------------------------------------------------------------------------- /Product/Samples/Clock/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Product/Samples/Clock/ReadMe.txt -------------------------------------------------------------------------------- /Product/Samples/WPFEmulator/Lcd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Product/Samples/WPFEmulator/Lcd.cs -------------------------------------------------------------------------------- /Product/Samples/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Product/Samples/build.dirproj -------------------------------------------------------------------------------- /Product/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Product/build.dirproj -------------------------------------------------------------------------------- /Product/v4.4/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Product/v4.4/build.dirproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseInfo.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/ReleaseInfo.settings -------------------------------------------------------------------------------- /Solutions/MCBSTM32F400/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/MCBSTM32F400/lwipopts.h -------------------------------------------------------------------------------- /Solutions/Template/dotnetmf.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Template/dotnetmf.proj -------------------------------------------------------------------------------- /Solutions/Windows/TinyCLR/ClrDependencies/Empty.cpp: -------------------------------------------------------------------------------- 1 | // This space intentionally left blank 8^) 2 | -------------------------------------------------------------------------------- /Solutions/Windows/TinyCLR/Lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows/TinyCLR/Lcd.cpp -------------------------------------------------------------------------------- /Solutions/Windows/TinyCLR/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows/TinyCLR/Time.cpp -------------------------------------------------------------------------------- /Solutions/Windows/TinyCLR/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows/TinyCLR/main.cpp -------------------------------------------------------------------------------- /Solutions/Windows/TinyCLR/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /Solutions/Windows/TinyCLR/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows/TinyCLR/stdafx.h -------------------------------------------------------------------------------- /Solutions/Windows/Windows.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows/Windows.settings -------------------------------------------------------------------------------- /Solutions/Windows/dotnetmf.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows/dotnetmf.proj -------------------------------------------------------------------------------- /Solutions/Windows/lwipopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows/lwipopts.h -------------------------------------------------------------------------------- /Solutions/Windows2/TinyCLR/Com.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows2/TinyCLR/Com.cpp -------------------------------------------------------------------------------- /Solutions/Windows2/TinyCLR/FS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows2/TinyCLR/FS.cpp -------------------------------------------------------------------------------- /Solutions/Windows2/TinyCLR/I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows2/TinyCLR/I2C.cpp -------------------------------------------------------------------------------- /Solutions/Windows2/TinyCLR/Lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows2/TinyCLR/Lcd.cpp -------------------------------------------------------------------------------- /Solutions/Windows2/TinyCLR/PWM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows2/TinyCLR/PWM.cpp -------------------------------------------------------------------------------- /Solutions/Windows2/TinyCLR/SPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows2/TinyCLR/SPI.cpp -------------------------------------------------------------------------------- /Solutions/Windows2/TinyCLR/Ssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows2/TinyCLR/Ssl.cpp -------------------------------------------------------------------------------- /Solutions/Windows2/TinyCLR/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows2/TinyCLR/UI.cpp -------------------------------------------------------------------------------- /Solutions/Windows2/TinyCLR/Usb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows2/TinyCLR/Usb.cpp -------------------------------------------------------------------------------- /Solutions/Windows2/dotnetmf.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Solutions/Windows2/dotnetmf.proj -------------------------------------------------------------------------------- /Support/CreateMfPkVersionProj.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/CreateMfPkVersionProj.proj -------------------------------------------------------------------------------- /Support/CreateReleaseInfo.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/CreateReleaseInfo.proj -------------------------------------------------------------------------------- /Support/GenerateFrameworkList.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/GenerateFrameworkList.proj -------------------------------------------------------------------------------- /Support/Include/TinySupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/Include/TinySupport.h -------------------------------------------------------------------------------- /Support/Include/WireProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/Include/WireProtocol.h -------------------------------------------------------------------------------- /Support/Include/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/Include/dotNetMF.proj -------------------------------------------------------------------------------- /Support/WireProtocol/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/WireProtocol/dotNetMF.proj -------------------------------------------------------------------------------- /Support/WireProtocol/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/WireProtocol/stdafx.cpp -------------------------------------------------------------------------------- /Support/WireProtocol/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/WireProtocol/stdafx.h -------------------------------------------------------------------------------- /Support/crc/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/crc/CRC.cpp -------------------------------------------------------------------------------- /Support/crc/crc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/crc/crc.vcproj -------------------------------------------------------------------------------- /Support/crc/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/crc/dotNetMF.proj -------------------------------------------------------------------------------- /Support/crc/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/crc/stdafx.cpp -------------------------------------------------------------------------------- /Support/crc/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/crc/stdafx.h -------------------------------------------------------------------------------- /Support/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Support/dotNetMF.proj -------------------------------------------------------------------------------- /Test/JTAG/Apps/HelloWorld/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/JTAG/Apps/HelloWorld/Main.cs -------------------------------------------------------------------------------- /Test/JTAG/Apps/LCD/LCD.datproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/JTAG/Apps/LCD/LCD.datproj -------------------------------------------------------------------------------- /Test/JTAG/Apps/LCD/lcd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/JTAG/Apps/LCD/lcd.cs -------------------------------------------------------------------------------- /Test/JTAG/Apps/LCD/lcd.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/JTAG/Apps/LCD/lcd.proj -------------------------------------------------------------------------------- /Test/JTAG/Apps/Network/loop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/JTAG/Apps/Network/loop.cs -------------------------------------------------------------------------------- /Test/JTAG/Apps/getip/getip.datproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/JTAG/Apps/getip/getip.datproj -------------------------------------------------------------------------------- /Test/JTAG/Apps/getip/getip.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/JTAG/Apps/getip/getip.proj -------------------------------------------------------------------------------- /Test/JTAG/Apps/getip/loop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/JTAG/Apps/getip/loop.cs -------------------------------------------------------------------------------- /Test/JTAG/ReadMe.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/JTAG/ReadMe.TXT -------------------------------------------------------------------------------- /Test/Native/Src/GPIO/GPIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/GPIO/GPIO.cpp -------------------------------------------------------------------------------- /Test/Native/Src/GPIO/GPIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/GPIO/GPIO.h -------------------------------------------------------------------------------- /Test/Native/Src/SPI/spi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/SPI/spi.cpp -------------------------------------------------------------------------------- /Test/Native/Src/SPI/spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/SPI/spi.h -------------------------------------------------------------------------------- /Test/Native/Src/UART/UART.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/UART/UART.cpp -------------------------------------------------------------------------------- /Test/Native/Src/UART/UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/UART/UART.h -------------------------------------------------------------------------------- /Test/Native/Src/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/dotNetMF.proj -------------------------------------------------------------------------------- /Test/Native/Src/log/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/log/Log.cpp -------------------------------------------------------------------------------- /Test/Native/Src/log/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/log/Log.h -------------------------------------------------------------------------------- /Test/Native/Src/ramtest/ramtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/ramtest/ramtest.h -------------------------------------------------------------------------------- /Test/Native/Src/timers/timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/timers/timers.cpp -------------------------------------------------------------------------------- /Test/Native/Src/timers/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Native/Src/timers/timers.h -------------------------------------------------------------------------------- /Test/PKTest/Native/Src/SPI/spi.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/PKTest/Native/Src/SPI/spi.CPP -------------------------------------------------------------------------------- /Test/PKTest/Native/Src/SPI/spi.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/PKTest/Native/Src/SPI/spi.H -------------------------------------------------------------------------------- /Test/PKTest/Native/Src/UART/UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/PKTest/Native/Src/UART/UART.h -------------------------------------------------------------------------------- /Test/PKTest/Native/Src/log/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/PKTest/Native/Src/log/Log.cpp -------------------------------------------------------------------------------- /Test/PKTest/Native/Src/log/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/PKTest/Native/Src/log/Log.h -------------------------------------------------------------------------------- /Test/Platform/Setup/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Platform/Setup/Readme.txt -------------------------------------------------------------------------------- /Test/Platform/Setup/TestSetup.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Platform/Setup/TestSetup.wxs -------------------------------------------------------------------------------- /Test/Platform/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/Platform/build.dirproj -------------------------------------------------------------------------------- /Test/build.dirProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/build.dirProj -------------------------------------------------------------------------------- /Test/setenv.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Test/setenv.cmd -------------------------------------------------------------------------------- /TinyCLR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/TinyCLR.sln -------------------------------------------------------------------------------- /TinyCLR_server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/TinyCLR_server.sln -------------------------------------------------------------------------------- /Update-DeviceSdkAssembly.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/Update-DeviceSdkAssembly.ps1 -------------------------------------------------------------------------------- /crypto/build_crypto.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/crypto/build_crypto.cmd -------------------------------------------------------------------------------- /crypto/build_crypto.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/crypto/build_crypto.proj -------------------------------------------------------------------------------- /crypto/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/crypto/dotNetMF.proj -------------------------------------------------------------------------------- /crypto/inc/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/crypto/inc/crypto.h -------------------------------------------------------------------------------- /crypto/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/crypto/readme.md -------------------------------------------------------------------------------- /crypto/stubs/crypto_stub.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/crypto/stubs/crypto_stub.vcproj -------------------------------------------------------------------------------- /crypto/stubs/dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/crypto/stubs/dotNetMF.proj -------------------------------------------------------------------------------- /crypto/stubs/stubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/crypto/stubs/stubs.cpp -------------------------------------------------------------------------------- /crypto/test_win/test_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/crypto/test_win/test_win.c -------------------------------------------------------------------------------- /dotNetMF.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/dotNetMF.proj -------------------------------------------------------------------------------- /mscorlibtests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/mscorlibtests.txt -------------------------------------------------------------------------------- /run_tests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/run_tests.cmd -------------------------------------------------------------------------------- /sdk.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/sdk.dirproj -------------------------------------------------------------------------------- /setenv_base.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setenv_base.cmd -------------------------------------------------------------------------------- /setenv_gcc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setenv_gcc.cmd -------------------------------------------------------------------------------- /setenv_mdk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setenv_mdk.cmd -------------------------------------------------------------------------------- /setenv_vs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setenv_vs.cmd -------------------------------------------------------------------------------- /setup/CustomActions/Include/Msi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/CustomActions/Include/Msi.h -------------------------------------------------------------------------------- /setup/CustomActions/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/CustomActions/build.dirproj -------------------------------------------------------------------------------- /setup/Docs/Collection/_ALinks.hxk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/Collection/_ALinks.hxk -------------------------------------------------------------------------------- /setup/Docs/Collection/_BLinks.hxk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/Collection/_BLinks.hxk -------------------------------------------------------------------------------- /setup/Docs/Collection/_CLinks.hxk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/Collection/_CLinks.hxk -------------------------------------------------------------------------------- /setup/Docs/Collection/_FLinks.hxk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/Collection/_FLinks.hxk -------------------------------------------------------------------------------- /setup/Docs/Collection/_KLinks.hxk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/Collection/_KLinks.hxk -------------------------------------------------------------------------------- /setup/Docs/Collection/_SLinks.hxk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/Collection/_SLinks.hxk -------------------------------------------------------------------------------- /setup/Docs/DNMFFilter10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/DNMFFilter10.xml -------------------------------------------------------------------------------- /setup/Docs/MFDeployDocs.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/MFDeployDocs.wixproj -------------------------------------------------------------------------------- /setup/Docs/NetMFCollection.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/NetMFCollection.wixproj -------------------------------------------------------------------------------- /setup/Docs/NetMFCollection.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/NetMFCollection.wxs -------------------------------------------------------------------------------- /setup/Docs/PSDKDocs.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/PSDKDocs.wixproj -------------------------------------------------------------------------------- /setup/Docs/PSDKDocs.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/PSDKDocs.wxs -------------------------------------------------------------------------------- /setup/Docs/RCLPort.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/RCLPort.wixproj -------------------------------------------------------------------------------- /setup/Docs/RCLPort.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/RCLPort.wxs -------------------------------------------------------------------------------- /setup/Docs/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/build.dirproj -------------------------------------------------------------------------------- /setup/Docs/msdn_shortcut.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/msdn_shortcut.wxs -------------------------------------------------------------------------------- /setup/Docs/pkdocs_shortcut.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Docs/pkdocs_shortcut.wxs -------------------------------------------------------------------------------- /setup/Features/BasicSamples.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/BasicSamples.wxs -------------------------------------------------------------------------------- /setup/Features/CoreDrivers.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/CoreDrivers.wxs -------------------------------------------------------------------------------- /setup/Features/CoreEmulator.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/CoreEmulator.wxs -------------------------------------------------------------------------------- /setup/Features/CorePlatform.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/CorePlatform.wxs -------------------------------------------------------------------------------- /setup/Features/Debugger.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/Debugger.wxs -------------------------------------------------------------------------------- /setup/Features/EmulatorSamples.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/EmulatorSamples.wxs -------------------------------------------------------------------------------- /setup/Features/Features.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/Features.wixproj -------------------------------------------------------------------------------- /setup/Features/NetMFv44.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/NetMFv44.wxs -------------------------------------------------------------------------------- /setup/Features/PSDKDocsFeature.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/PSDKDocsFeature.wxs -------------------------------------------------------------------------------- /setup/Features/SamplesFeature.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/SamplesFeature.wxs -------------------------------------------------------------------------------- /setup/Features/Tools.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Features/Tools.wxs -------------------------------------------------------------------------------- /setup/Include/Docs.Common.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Include/Docs.Common.wxs -------------------------------------------------------------------------------- /setup/Include/common.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Include/common.wxs -------------------------------------------------------------------------------- /setup/Include/defines.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Include/defines.wxs -------------------------------------------------------------------------------- /setup/Include/devenv_setup.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Include/devenv_setup.wxs -------------------------------------------------------------------------------- /setup/Include/mergecrt.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Include/mergecrt.wxs -------------------------------------------------------------------------------- /setup/Include/prereq.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Include/prereq.wxs -------------------------------------------------------------------------------- /setup/Include/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Include/setup.ico -------------------------------------------------------------------------------- /setup/LIB/Bitmaps/New.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/Bitmaps/New.ico -------------------------------------------------------------------------------- /setup/LIB/Bitmaps/Up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/Bitmaps/Up.ico -------------------------------------------------------------------------------- /setup/LIB/Bitmaps/bannrbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/Bitmaps/bannrbmp.bmp -------------------------------------------------------------------------------- /setup/LIB/Bitmaps/dlgbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/Bitmaps/dlgbmp.bmp -------------------------------------------------------------------------------- /setup/LIB/Bitmaps/exclamic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/Bitmaps/exclamic.ico -------------------------------------------------------------------------------- /setup/LIB/Bitmaps/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/Bitmaps/info.ico -------------------------------------------------------------------------------- /setup/LIB/New.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/New.ico -------------------------------------------------------------------------------- /setup/LIB/Up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/Up.ico -------------------------------------------------------------------------------- /setup/LIB/WixUI_en-us.wxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/WixUI_en-us.wxl -------------------------------------------------------------------------------- /setup/LIB/bannrbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/bannrbmp.bmp -------------------------------------------------------------------------------- /setup/LIB/dlgbmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/dlgbmp.bmp -------------------------------------------------------------------------------- /setup/LIB/exclamic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/exclamic.ico -------------------------------------------------------------------------------- /setup/LIB/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/info.ico -------------------------------------------------------------------------------- /setup/LIB/wixui.wixlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/wixui.wixlib -------------------------------------------------------------------------------- /setup/LIB/wixui_featuretree.wixlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/wixui_featuretree.wixlib -------------------------------------------------------------------------------- /setup/LIB/wixui_minimal.wixlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/wixui_minimal.wixlib -------------------------------------------------------------------------------- /setup/LIB/wixui_mondo.wixlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/LIB/wixui_mondo.wixlib -------------------------------------------------------------------------------- /setup/Misc/Fonts.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/Misc/Fonts.wixproj -------------------------------------------------------------------------------- /setup/ProductSDK/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/ProductSDK/License.rtf -------------------------------------------------------------------------------- /setup/ProductSDK/Product.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/ProductSDK/Product.wixproj -------------------------------------------------------------------------------- /setup/ProductSDK/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/ProductSDK/Product.wxs -------------------------------------------------------------------------------- /setup/ProductSDK/REDIST.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/ProductSDK/REDIST.TXT -------------------------------------------------------------------------------- /setup/ProductSDK/Symbols.archive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/ProductSDK/Symbols.archive -------------------------------------------------------------------------------- /setup/ProductSDK/Symbols.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/ProductSDK/Symbols.index -------------------------------------------------------------------------------- /setup/ProductSDK/autorun.inf: -------------------------------------------------------------------------------- 1 | [autorun] 2 | open=Setup.exe 3 | -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary1.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary1.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary10.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary10.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary11.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary11.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary12.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary12.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary13.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary13.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary14.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary14.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary15.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary15.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary16.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary16.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary17.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary17.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary18.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary18.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary2.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary2.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary3.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary3.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary4.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary4.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary5.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary5.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary6.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary6.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary7.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary7.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary8.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary8.ibd -------------------------------------------------------------------------------- /setup/UI/Binary/NewBinary9.ibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/Binary/NewBinary9.ibd -------------------------------------------------------------------------------- /setup/UI/FrameworkSetupUI.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/FrameworkSetupUI.wixproj -------------------------------------------------------------------------------- /setup/UI/FrameworkSetupUI.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/UI/FrameworkSetupUI.wxs -------------------------------------------------------------------------------- /setup/build.dirproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/build.dirproj -------------------------------------------------------------------------------- /setup/sdkversion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/setup/sdkversion.xml -------------------------------------------------------------------------------- /std_vcxproj.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/std_vcxproj.props -------------------------------------------------------------------------------- /tools/AssemblyInfo.cs.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/AssemblyInfo.cs.template -------------------------------------------------------------------------------- /tools/AssemblyInfo.rc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/AssemblyInfo.rc.template -------------------------------------------------------------------------------- /tools/AssemblyInfo.vb.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/AssemblyInfo.vb.template -------------------------------------------------------------------------------- /tools/DisAsmPE/DisAsmPE.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/DisAsmPE/DisAsmPE.sln -------------------------------------------------------------------------------- /tools/DisAsmPE/DisAsmPE/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/DisAsmPE/DisAsmPE/Graphics.h -------------------------------------------------------------------------------- /tools/DisAsmPE/DisAsmPE/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/DisAsmPE/DisAsmPE/stdafx.cpp -------------------------------------------------------------------------------- /tools/DisAsmPE/DisAsmPE/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/DisAsmPE/DisAsmPE/stdafx.h -------------------------------------------------------------------------------- /tools/DisAsmPE/Include/EnumFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/DisAsmPE/Include/EnumFlags.h -------------------------------------------------------------------------------- /tools/DisAsmPE/Include/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/DisAsmPE/Include/Utilities.h -------------------------------------------------------------------------------- /tools/DisAsmPE/Include/opcode.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/DisAsmPE/Include/opcode.def -------------------------------------------------------------------------------- /tools/DisAsmPE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/DisAsmPE/readme.md -------------------------------------------------------------------------------- /tools/Targets/startfile.specs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/Targets/startfile.specs -------------------------------------------------------------------------------- /tools/UsbTest/ParamParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/ParamParser.cpp -------------------------------------------------------------------------------- /tools/UsbTest/ParamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/ParamParser.h -------------------------------------------------------------------------------- /tools/UsbTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/ReadMe.txt -------------------------------------------------------------------------------- /tools/UsbTest/SPOT_USB_TEST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/SPOT_USB_TEST.cpp -------------------------------------------------------------------------------- /tools/UsbTest/SPOT_USB_TEST.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/SPOT_USB_TEST.sln -------------------------------------------------------------------------------- /tools/UsbTest/SPOT_USB_TEST.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/SPOT_USB_TEST.vcproj -------------------------------------------------------------------------------- /tools/UsbTest/excpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/excpt.cpp -------------------------------------------------------------------------------- /tools/UsbTest/excpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/excpt.h -------------------------------------------------------------------------------- /tools/UsbTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/stdafx.cpp -------------------------------------------------------------------------------- /tools/UsbTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/stdafx.h -------------------------------------------------------------------------------- /tools/UsbTest/stringhelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/stringhelp.cpp -------------------------------------------------------------------------------- /tools/UsbTest/stringhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/stringhelp.h -------------------------------------------------------------------------------- /tools/UsbTest/testpat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/UsbTest/testpat.txt -------------------------------------------------------------------------------- /tools/bin/BLANK.KEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/bin/BLANK.KEY -------------------------------------------------------------------------------- /tools/binToSrec/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/binToSrec/App.ico -------------------------------------------------------------------------------- /tools/binToSrec/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/binToSrec/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools/binToSrec/binToSrec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/binToSrec/binToSrec.cs -------------------------------------------------------------------------------- /tools/binToSrec/binToSrec.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/binToSrec/binToSrec.csproj -------------------------------------------------------------------------------- /tools/binToSrec/binToSrec.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/binToSrec/binToSrec.sln -------------------------------------------------------------------------------- /tools/binToSrec/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/binToSrec/readme.txt -------------------------------------------------------------------------------- /tools/make/ADSwrapper.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/make/ADSwrapper.cmd -------------------------------------------------------------------------------- /tools/make/Profile_Map1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/make/Profile_Map1.pl -------------------------------------------------------------------------------- /tools/make/h2inc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/make/h2inc.pl -------------------------------------------------------------------------------- /tools/make/unique.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/make/unique.pl -------------------------------------------------------------------------------- /tools/scripts/Build-netmf.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/scripts/Build-netmf.psm1 -------------------------------------------------------------------------------- /tools/scripts/Preprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/scripts/Preprocess.js -------------------------------------------------------------------------------- /tools/scripts/build_tests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/scripts/build_tests.cmd -------------------------------------------------------------------------------- /tools/scripts/dump_serial.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/scripts/dump_serial.cmd -------------------------------------------------------------------------------- /tools/scripts/init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/scripts/init.cmd -------------------------------------------------------------------------------- /tools/scripts/packpath.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/scripts/packpath.cmd -------------------------------------------------------------------------------- /tools/scripts/port/BinaryCopyList.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/scripts/port/EMPTY.KEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/scripts/port/EMPTY.KEY -------------------------------------------------------------------------------- /tools/scripts/port/SetArmVars.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/scripts/port/SetArmVars.cmd -------------------------------------------------------------------------------- /tools/scripts/sign_file.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/scripts/sign_file.cmd -------------------------------------------------------------------------------- /tools/util/AddResource/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/util/AddResource/stdafx.cpp -------------------------------------------------------------------------------- /tools/util/AddResource/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETMF/netmf-interpreter/HEAD/tools/util/AddResource/stdafx.h --------------------------------------------------------------------------------