Is there an Open Source MTP (Media Tranfer Protocol) Responder Implementation for BeagleBone devices [closed] - mtp

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am looking for an Open Source MTP (Media Transfer Protocol) responder implementation for BeagleBone boards. Alternatively, an embedded Linux implementation that includes an MTP responder implementation.
Note, this is not the same as the MTP initiator as found with gmtp and similar.

take a look here:
from buteo project
1) https://git.merproject.org/mer-core/buteo-mtp
from ubuntu
2) http://bazaar.launchpad.net/~phablet-team/mtp/trunk/files
or android
3)https://android.googlesource.com/platform/frameworks/base/+/master/media/jni/
i have already got ubuntu and buteo-version both running on BBB.

Another MTP responder have been developed recently :
https://github.com/viveris/uMTP-Responder
Implemented in C, in user space and use the GadgetFs layer.
This wasn't tested yet on BeagleBone but this shouldn't be a problem. You just have to change the gadgetFS settings in the config file.
More details on the github project page.

Related

How to run uf2 program file without USB connection [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 3 years ago.
Improve this question
I'm developping a little program that should watch at the download folder and automatically transfert UF2 file from https://makecode.mindstorms.com using a bluetooth connection and execute it. I'm using MonoBrick for that (http://www.monobrick.dk).
I don't understand how this UF2 file work. When I upload this file to the lego Mindstorms through an USB connection it automatically start (what is not very convenient as the cable is still connected).
But, when doing the same process with my code or using EV3Explorer (https://github.com/c0pperdragon/EV3Basic/tree/master/EV3Explorer) nothing happen. I can see the file with the file explorer on Windows but not directly on the Lego Mindstorms Brick.

Thermal printer Driver In windows [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am new to windows driver development, now i am developing Driver for our own thermal printer. So learn some Printer driver basics From MSDN (WDK source). Now i am printing with Generic TEXT/ONLY mode in windows .but i need to integrate my printer with different applications like (word ,pdf, and from browser)for that GENERIC/TEXT ONLY MODE will not help so i need to create a own driver.every printer driver must have
1.GPD
2.Printer graphics DLL.
3.Properties.DLL
i have some doubt about this.i found some dlls from WDK source
is it possible to use that dll for my printer .
Are those dll's printer specific.
how to make my printer support various printer command languages?
how to make my driver to work with multiple windows versions like xp
,7,8 ?
if you have any experience with printer driver development can you share your knowledge with me.
Your question is very broad. In essence, you're asking for an entire tutorial on print drivers, which could fill a book. Take a look at the Unidriver plugin samples in the WDK. A version 3 Unidriver plugin will work on any Windows platform from XP to Win8. If your printer is raster technology, you'll probably want to start with the BITMAP sample.

Open source RTP mixer/translator exe or sdk [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Hi I need opens source (win 32) sdk or free server with signaling protocol, which implements RTP translator or mixer. e.g receives RTP traffic from one connection and transmits it on the other. Does not have to have conferencing capabilities.
Server should implement some kind of protocol which opens, bridges, and closes connections.
Ready made server is much preferable than just common RTP SDK.
Use ffmpeg - ffserver
I haven't found nothing real.
RtpProxy approaches the goal but I wasn't able to use it because it is for linux only.
I tweaked Rtp Relay test program included in Live555
look at VLC
look at the command line option of VLC

how to write a virtual com port to TCP driver? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Hi I am trying to write a windows virtual com port driver which will divert the data to a IP address. any pointers, best practice will be of help?
I know of a Open source project called com0com which is virtual com port redirector. there is a subproject called com2tcp in that which you can look atcom0com. otherwise for windows I am not sure you have any open source available
Between there are commercially available software such as the one from Eltima and tactical software. there are few freewares too, you can search by the name comport redirector.
Check out this example of a User Mode Driver from Microsoft:
Archive.org -> Microsoft.com: Virtual serial driver sample (FakeModem)
Github.com/Microsoft : Virtual serial driver sample (FakeModem)
You can take a look at the open source project Null-modem emulator (com0com) which includes a COM port to TCP redirector.
you can look at the software development kit from Constellation Data Systems, Inc.

What is your favorite free Netstat GUI / Connection Monitor app for Windows? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I need something a little more feature rich than Sysinternals TCPView (which I regularly use) ... but it also must be freeware. :)
Well, the question is a bit old and I realize that probably you already found the software you were looking for... just in case, an interesting connection monitor utility is CurrPorts, by Nir Sofer.
Freely adapted from the program's home page:
displays the list of all currently opened TCP/IP and UDP ports on your local computer;
for each port in the list, information about the process that opened the port is also displayed, including the process name, full path of the process, version information of the process (product name, file description, and so on), the time that the process was created, and the user that created it;
allows you to close unwanted TCP connections, and kill the process that opened the ports;
allows custom filters for inclusion/exclusion of connections.
Maybe a full blown traffic sniffer like Wireshark will complement your tool set?
Amongst wiresharks features are:
packet analysis
traffic statistics
capture
coloring
data export
I recommend TCPView for Windows v2.53.
image http://i.technet.microsoft.com/bb897437.TcpView(en-us,MSDN.10).gif
TCPView is a Windows program that will show you detailed listings of all TCP and UDP endpoints on your system, including the local and remote addresses and state of TCP connections. On Windows Server 2008, Vista, NT, 2000 and XP TCPView also reports the name of the process that owns the endpoint. TCPView provides a more informative and conveniently presented subset of the Netstat program that ships with Windows. The TCPView download includes Tcpvcon, a command-line version with the same functionality.
Not sure what features you are looking for so this is my suggestion.
Without having used it, I have seen TCPStat advertised a few times.
It looks like it was a discontinued project somewhere around 2003 and it's an awful blue color.
There's the MS Network Monitor.
Process Hacker shows also send/receive bytes, speed, country flag etc.