Hey Paul,
First of all, thanks for the tips, it did help a lot. But would you mind if
I use you a little more to get up to speed with this project?
Answering your first question, yes, I'm studying to the best of my
capacities and time-constrains. I found the PDF a little too succint
though. If you had some more recommended literature, I'd be very happy to
read it.
I took a brief look at the present library's code but I must confess I got
a little confused. Probably because I was too unprepared. I'll do that
again when I experiment a little more with the examples and know exactly
what to look for.
I did a couple of quick tests to see if my setup is working fine (it is). I
tested it using some Boost.Math functions as suggested, but I reckon the
test was not solid enough yet.
I'll search for a few known big numbers and way to compute them tomorrow.
I think it's more convenient (not to overuse the list) to put my files here
(https://bitbucket.org/luk51000/multiprecision). It's currently empty since
I my git broke today and I didn't have time to fix it, but I should be
pushing code as soon as tomorrow.
--
Lucas Oliveira
On Wed, Apr 10, 2013 at 2:01 PM, <boost-users-request@lists.boost.org>wrote:
Send Boost-users mailing list submissions to
boost-users@lists.boost.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.boost.org/mailman/listinfo.cgi/boost-users
or, via email, send a message with subject or body 'help' to
boost-users-request@lists.boost.org
You can reach the person managing the list at
boost-users-owner@lists.boost.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Boost-users digest..."
Today's Topics:
1. Re: Asio Serial ports: enumerating all the devices
(Kerry, Richard)
2. Re: [BGL] Error using breadth_first_search with labeled_graph
(Jeremiah Willcock)
3. Re: [multiprecision] radix-2 (Paul A. Bristow)
----------------------------------------------------------------------
Message: 1
Date: Wed, 10 Apr 2013 13:22:14 +0000
From: "Kerry, Richard" <richard.kerry@atos.net>
To: "boost-users@lists.boost.org" <boost-users@lists.boost.org>
Subject: Re: [Boost-users] Asio Serial ports: enumerating all the
devices
Message-ID:
<
61C67DC73308BD49B2D4B65072480DBA15397181@DEFTHW99EZ1MSX.ww931.my-it-solutions.net
Content-Type: text/plain; charset="us-ascii"
"vendor id, product id "
What's that ?
I mean for a serial device. If they are present in the device protocol
then fine, but that depends on the individual devices and their protocols.
You can check whether there has been any traffic, which might be useful,
but serial connections are just streams of bytes.
Unhelpfully,
Richard.
PS
I do recognize "vendor id, product id " for SNMP and for other protocols
working at a higher level than "serial".
________________________________
From: Boost-users [mailto:boost-users-bounces@lists.boost.org] On Behalf
Of Vincent Boucher
Sent: 10 April 2013 13:40
To: boost-users@lists.boost.org
Subject: [Boost-users] Asio Serial ports: enumerating all the devices
Hello,
Are there cross-platform methods to discover all the devices currently
connected through serial ports with Boost?
The idea is to have a function returning a list of device objects, each
containing a handle, the related vendor id, product id and the baud rate at
which the device was able to communicate.
My knowledge of serial communication is very limited, may be it is
technically infeasible. Do you have any thoughts for Boost or other libs?
Analog enumerate method for HID devices:
http://www.signal11.us/oss/hidapi/
Thanks,
Vincent