29 Commits (695136deb2b729fb9da904758a3027bdb5a94326)

Author SHA1 Message Date
follower 695136deb2 Correct comment about 'read' blocking for data--it seems that 'recv' actually doesn't block after all.
18 years ago
follower 89bb89f05a Close connection when demo is finished.
18 years ago
follower 265a634089 If the connection 'listen' method fails we bail into an infinite loop. TODO: Provide a way for the caller to detect and handle this kind of error?
18 years ago
follower 2fc2cf46a8 Change connection listen method to return a boolean indicating whether the socket began to listen successfully. TODO: Use this value usefully.
18 years ago
follower b0cfc84abe Add a comment about default socket possibility.
18 years ago
follower 4979f30019 Add connection byte read method--not yet used.
18 years ago
follower c89615a4a3 Store maximum number of sockets available to us. Note: We don't use this currently as we hardcode to always use socket number 0--which means things will break if someone tries to create more than one socket. TODO: Fix this, obviously... :-)
18 years ago
follower 5e153c539e A quick fix to enable things to work again. The bug occurred because the socket number supplied to the socket creation/activation routine was never correctly initialised. I had thought a call to 'socket' routine returned the socket number in the first parameter, but it turns out I was supposed to _supply_ the socket number. (I had misunderstood what was hidden behind the 'SOCKET' type definition.) Oddly enough it took nearly two months before this mistake caused something to stop working (seemingly)--it seems nonsensical values didn't always cause failure. TODO: Investigate this further? TODO: FIx properly to allow multiple sockets and tracking thereof.
18 years ago
follower 8247d829a2 Add method to close socket. NOTE: This change BREAKS THINGS and the demo NO LONGER FUNCTIONS. The problem is however unrelated to the commit--this code simply reveals an already existing bug due to the socket number being uninitialised. Now I've found out why the problem occurs I can fix it in the next commit.
18 years ago
follower e4dfd94a4c Change 'listen' methods to take a 'uint16_t'. Temporarily include a test socket creation--THIS BREAKS the webserver demo. NOTE/TODO: Supplying port numbers greater than 255 IS BROKEN--I don't know why--see comments for more details.
18 years ago
follower 6e0f16aec1 Add 'isConnected' method to 'NetworkConnection' in prepartion for use.
18 years ago
follower 45481088d4 Add initial skeleton of the plain socket wrapping 'NetworkConnection' class--it is not yet used though.
18 years ago
follower 228508d0a9 Move and reword configuration debug messages.
18 years ago
follower 06f8f9a220 Remove test code. TODO: Add check/diagnostic ability to determine if the module and driver are functioning correctly?
18 years ago
follower 4aaf08a396 Move default configuration into NetworkInterface constructor. Change default values.
18 years ago
follower 3e04fbc259 (*Much* later...) Include skeleton of 'NetworkInterface' class and enable it to be initialised with a pre-configured 'Wiz810MjDevice' instance. (This required the use of 'References' and an 'initialization list' which was all news to me...)
18 years ago
follower 0252654324 Remove old configuration data.
18 years ago
follower d8f3eb266e Convert MAC address configuration to class method.
18 years ago
follower b7867b8f80 Add six-byte buffer packing method to allow for MAC address configuration.
18 years ago
follower 0abd75b40c Fix variable name in 'setIp' declaration. Add and convert to methods for configuring net mask and gateway.
18 years ago
follower 0cc5fc9107 Move scratch buffer manipulation into helper method. Convert IP address configuration to use new method.
18 years ago
follower 395266e282 Begin moving network configuration into Wiz class and convert IP address configuration to the new method.
18 years ago
follower c61d2ef510 Move network module initialisation into class.
18 years ago
follower 732e4ac846 Add skeleton of Wiz810MJ class.
18 years ago
follower 5f2b65048d Change SPI configuration to use an object so we can match the 'Foo.begin()' convention of the standard Arduino Serial configuration people are used to seeing.
18 years ago
follower 11ab05e210 Move SPI configuration function into a static class method of the SPI class.
18 years ago
follower 89111a4e8c Add skeleton of SPI class.
18 years ago
follower 4377145f3e Fix the filename.
18 years ago
follower 2f5c9a5c42 Now that we've slightly tidied up WizDemo3 we'll leave it in peace.
18 years ago