search for: winc

Displaying 20 results from an estimated 106 matches for "winc".

Did you mean: inc
2008 Sep 12
1
Echo Cancellation not working on WinCE
Hello Friends, I am trying to use speex-1.2beta3 version for echo cancelling. On my WinCE board I am using WaveIn/WaveOut functions to record and playback audio. I am receiving audio data on udp socket, then playing it on speaker using WaveOutWrite function. I registered callback to capture microphone data, then data chunk came from socket ( which I played on speaker) and data captured...
2004 Jun 23
4
Future WinCE IP Phone
Hi, Found a nice little video about a prototype phone from broadcom currently sitting in Microsoft WinCE lab. The video is at: http://channel9.msdn.com The video in question is an interview with Mike Hall titled "Windows CE and Windows Embedded Lab Tour". The clip dealing with the VOIP phone is right at the start so you don't need to watch the whole thing (although there is some more...
2007 May 25
0
Status 58 trying to connect WinCE 4.1 to Samba 3.0.23c-2.el5.2
Hello everyone. I've recently replaced a file server running Samba 2.2.8a on Solaris 8 with one running 3.0.23c-2.el5.2 on CentOS 5. I'm trying to set up a WinCE 4.1 device (A V56 Makino milling center with a Pro 5 controller) to work with the new configuration and I can't get it figured out. When I try to do a 'net use share1 \\server\share', it responds with 'Command failed: status 58'. 'net helpmsg 58' says 'The specif...
2012 Mar 30
1
Support for boot WinCE from disk
Hi, [ please keep me in CC as I am not subscribed to the mailing list ] I'd like to use syslinux to boot WinCE from local disk. Is there support for it? -- Otavio Salvador? ? ? ? ? ? ? ? ? ? ? ? ? ? ?O.S. Systems E-mail: otavio at ossystems.com.br? http://www.ossystems.com.br Mobile: +55 53 9981-7854? ? ? ?? ? ? ?http://projetos.ossystems.com.br
2006 May 17
1
FW: libtheora in WinCE or PocketPC?
...re there any answers now? > I'm sure this is a common question, but I haven't seen it asked nor answered > on this list, on the Theora Wiki nor FAQ, nor on the Internet at large > (though I haven't checked the whole thing): > > Has anyone ported 'libtheora' to WinCE or PocketPC 2003? > > I seem to recall seeing a Linux ARM port, but I haven't been able to confirm > that, either. I see there's a "__arm__" compile-time switch in > "SDL_byteorder.h", but that's the only mention I see. > > Can you suggest the...
2005 Apr 15
0
libtheora in WinCE or PocketPC?
I'm sure this is a common question, but I haven't seen it asked nor answered on this list, on the Theora Wiki nor FAQ, nor on the Internet at large (though I haven't checked the whole thing): Has anyone ported 'libtheora' to WinCE or PocketPC 2003? I seem to recall seeing a Linux ARM port, but I haven't been able to confirm that, either. I see there's a "__arm__" compile-time switch in "SDL_byteorder.h", but that's the only mention I see. Can you suggest the best way to get Theora up and...
2005 Mar 16
0
IAX softphone on WinCE/PocketPC
Hi, Is anyone aware of an IAX client that's made for the Windows CE/Pocket PC platform? Or even the Palm platform for that matter. Thanks.
2010 Jul 16
2
[LLVMdev] Tool for run-time code generation?
> LLVM has a JIT for this purpose. You generate LLVM IR code (a sort of > generic assembler) and it produces optimized native code ready to be > executed. > > x86-win32 is fine. I don't think so about arm-wince. What's wrong with running LLVM on ARM? It's supposed to support ARM as a target, and since it's written in C it should theoretically compile for ARM. CMake doesn't support Visual Studio 9 for Smart Devices, so I would probably have to go to quite a bit of trouble to create a proj...
2019 Dec 21
0
Printing from WinCE5.0
I'm trying to print through network, from WinCE5.0 machine to Debian machine with Samba printer share. The problem is, tht only first 1024 bytes of print data are spooled and printed. Printing to Samba share from WinXP or Win10 or Win98 works fine. Also printing from WinCE to printer shared on WinXP works fine. I've tried various smb.conf p...
2010 Jul 16
3
[LLVMdev] Tool for run-time code generation?
> > What's wrong with running LLVM on ARM? > > LLVM can generate code for ARM, but the JIT requires extra target and > platform dependent stuff, and that's not done for arm-wince. The release notes say "compiler_rt now supports ARM targets". What else is needed? Keep in mind that I do not need (or want) Clang or any of the optimizers: I just want to generate small sequences of machine code in-memory (on the heap, I assume) and execute them. By the way, LLVM com...
2010 Jul 16
0
[LLVMdev] Tool for run-time code generation?
...Piepgrass <dpiepgrass at mentoreng.com> writes: >> LLVM has a JIT for this purpose. You generate LLVM IR code (a sort of >> generic assembler) and it produces optimized native code ready to be >> executed. >> >> x86-win32 is fine. I don't think so about arm-wince. > > What's wrong with running LLVM on ARM? LLVM can generate code for ARM, but the JIT requires extra target and platform dependent stuff, and that's not done for arm-wince. > It's supposed to support ARM as a target, and since it's written in C > it should theoretic...
2009 Mar 13
1
Windows CE / Windows Mobile 6 /
googling "site:tinc-vpn.org wince" results in nothing. Has there been any attempt to port it to wince based devices?
2010 Jul 16
0
[LLVMdev] Tool for run-time code generation?
...2:22:57 PM > Subject: Re: [LLVMdev] Tool for run-time code generation? > > > > What's wrong with running LLVM on ARM? > > > > LLVM can generate code for ARM, but the JIT requires extra target and > > platform dependent stuff, and that's not done for arm-wince. > > The release notes say "compiler_rt now supports ARM targets". What else is >needed? Keep in mind that I do not need (or want) Clang or any of the >optimizers: I just want to generate small sequences of machine code in-memory >(on the heap, I assume) and execute...
2010 Jul 16
2
[LLVMdev] Tool for run-time code generation?
> Have you ever tried running a dynamically allocated code that cannot > execute > malloc() or any runtime libraries or library-based functions because > they haven't been ported to your architecture? That's what it would > be like trying to run ARM Linux code on your WinCE target. Windows CE > requires an LLVM port before it will be useful to you. Put simply, > the core architecture of the LLVM ARM backend requires porting to > work. WinCE offers most of the standard C APIs (such as malloc), as well as most standard C++ libraries including, I think,...
2010 Jul 16
0
[LLVMdev] Tool for run-time code generation?
...de, I would like to generate code at run-time (the same > way .NET code can use dynamic methods or compiled expressions) in > order to obtain very high performance code (to read binary data > records whose formats are only known at run-time.) > > I need to target x86 (Win32) and ARM (WinCE). > > Can LLVM be used for this purpose, or would something else work > better? LLVM has a JIT for this purpose. You generate LLVM IR code (a sort of generic assembler) and it produces optimized native code ready to be executed. x86-win32 is fine. I don't think so about arm-wince....
2004 Jan 12
2
SIP-Client for Handheld PC
Anyone know a sip-client that will work on a Handheld PC running WINCE for HPC. I can find some for PocketPC, but the wont work on my HPC ?? /HHA _________________________________________________________________ Scope out the new MSN Plus Internet Software — optimizes dial-up to the max! http://join.msn.com/?pgmarket=en-us&page=byoa/plus&ST=1
2004 Aug 06
1
status report on the Windows CE (PocketPC) ACM codec
...take. After the Embedded C++ IDE crashed unexpectedly, > the .lib file was no longer present in the project settings (the project had not been saved) > so all the errors I got were caused by a missing .lib reference in the link stage! > I had to change my cross compiler target to "arm-wince-pe" because otherwise the > object/.lib files generated by gcc would not be accepted by Microsoft's LINK.EXE. Hi Could you tell me what do i need to compile libspeex under Cygwin with "arm-wince-pe"? I woul like to compile libspeex with --enable-asm-arm (inpossible in EVC++...
2007 Dec 05
3
[PATCH] Add Visual Studio 2008 Prject files
...build support is good. It should be there. 2) I _will_ maintain VS6, VS2003 and VS2005 projects for Speex as long as we use Speex in sipXmediaLib. It would be great to have them checked in to Speex repo, if no - we will keep them in our. Reasons - handiness, ability to link statically, support for WinCE. 3) Project files make compilation much easier for people how want Speex to "just work" and want to use svn version (e.g. because of bugfixes). Also they reduce number of questions in mailing list from the legion of VS users. 4) I have not so much time to flame on this and definitely wil...
2019 Jun 20
2
error when trying to copy file from samba share to old Windows CE share
On Wed, Jun 19, 2019 at 3:41 PM Jeremy Allison <jra at samba.org> wrote: > Weren't you getting a NT_STATUS_NOT_IMPLEMENTED level > error return ? > > Look for the specific error return you see on the WinCE > client in the trace. Figured out the issue... After comparing a good vs bad file copy in wireshark for a while, I have found where it goes wrong. On the good copy I see an "NT Create AndX Request" with a response that says it created the file. On the bad copy it instead does a &qu...
2010 Jul 16
6
[LLVMdev] Tool for run-time code generation?
Using C++ code, I would like to generate code at run-time (the same way .NET code can use dynamic methods or compiled expressions) in order to obtain very high performance code (to read binary data records whose formats are only known at run-time.) I need to target x86 (Win32) and ARM (WinCE). Can LLVM be used for this purpose, or would something else work better? Are there any open-source projects that have done this, that I could look to as an example? David Piepgrass, E.I.T. Software Developer __________________________________________ Mentor Engineering Inc.<http://www.mento...