Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~800 People Reached
Favorite Forums

3 Posted Topics

Member Avatar for zentropy

Does anybody know how to get data from the ethernet port? Is there a library for it? Basically there is going to be a microcontroller sending data over ethernet, and I want to get the data it sends and write it to a file Thanks

Member Avatar for Ketsuekiame
0
371
Member Avatar for zentropy

Does anybody know how to get data from the ethernet port? Is there a library for it? I don't really know how networking works Basically there is going to be a microcontroller sending data over ethernet, and I want to get the data it sends and write it to a …

Member Avatar for tzushky
0
355
Member Avatar for Dimitar

Below is the general outline of how you would use backtracking / branch and bound to solve it. [code] bool promising( node n); // returns true if n is solution or could lead to solution void checknode( node n) { if( promising(n)) { if(node is target point) { writeSolution(); } …

Member Avatar for zentropy
0
74

The End.