Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Scope usage (Score 3, Insightful) 215

I'm the author of Teensyduino, software for an Arduino compatible board.

I sometimes use my Agilent scope when developing or porting Arduino libraries. Sometimes I just want to check the relative timing of stuff, so I'll set a pin high or low at some point in the code, then capture with the scope to see if the code is taking a long time. Often it's surprising how fast, or how slow certain code can be, and pretty often it's relatively easy to discover and fix performance problems. You can do quite a lot by normal software debugging processes, but pretty much all those approaches involve running the code much slower. When you're debugging real-time code, like libraries that synthesize waveforms by bit-bashing or tricks with timers or DMA channels, there's really no substitute for a good scope.

But admittedly, this is a pretty narrow fringe. Most people probably don't do this sort of low-level coding.

Comment Re:Too bad it's a C++ library... (Score 1) 147

Really, you've written GUI programs using GTK's C-only API and liked it?

Did you really enjoy all that type casting of pointers? That's a lot of unnecessary trouble, when clearly some dialog box must be able to use the more generic window style setting functions. If only the compiler somehow could know your reference to the dialog box is compatible with all that other stuff the dialog box is built upon.... if only....

Comment Re:But what does it really mean in practice? (Score 4, Interesting) 147

I've build programs with wxWidgets 2.8. It does automatically handle those platform specific style issues!

I used wxMenuBar, populated with a heirarchy of wxMenu and wxMenuItem objects. I just pass a point to the main wxMenuBar object to SetMenuBar, which is from the top-level frame of the GUI.

On Mac OS-X, it automatically appear at the top of the screen. One Linux and Windows, it automatically appears on the top of my program's window.

Likewise for toolbars, I simply used with wxWidgets objects as documented, without any specific style stuff. They automatically adapt to fit the style of each system.

That's the magic of wxWidgets. That work you mentioned, adapting things to fit the stylistic expectation of each system, is exactly what wxWidgets does so very well. It's vastly superior to other toolkits which attempt draw their own widgets, because the wxWidgets developers have gone to tremendous effort to actually use the native widgets from each platform. You just use the rather generic API for wxWidgets and you end up with really good native GUIs on all 3 platforms. Best yet, when the user customizes fonts, colors and whatever else, your program adapts like other truly native applications. Other cross platform toolkits fall down in that respect to the customized style, because they aren't really using the platform's native GUI.

Comment Re:But what does it really mean in practice? (Score 5, Informative) 147

I use wxWidgets. Most of my experience is with version 2.8.

If you care deeply about making a native applcation that truly has a native GUI on Windows, Mac and Linux, wxWidgets is great. Nothing else even comes close. Java, QT, XUL, FLTK, TCL/KT and others all produce programs that aren't quite right on some plaforms.

If you don't care about cross platform native GUI applications, or you target browsers with javascript+node+[insert newest buzz], then wxWidgets is not for you. If you really only want to produce a program for Windows but maybe someday have the option to easily port to Mac and Linux, while wxWidgets can give you that, if you don't truly care are doing all 3 from the beginning, I believe you'll find wxWidgets it simply too much trouble.

The truth is wxWidgets is pretty much its own system, an SDK in itself. It has a tremendous amount of somewhat complex design, like sizers, which means you have to go to some extra effort. Of course, for making things work well on all platforms... not simply just work, and not work well on Windows but end up sub-standard on Mac or Linux, but work truly well on all 3, the extra effort to use wxWidgets is definitely worthwhile.

But the truth is you do have to put in extra effort. wxWidgets has great documentation to help, but the other truth is everything is heavily steeped in C++ class heirarchy. If you're good with C++, it'll feel pretty natural. If not, well, you'll get much better with C++ in the process, if you persevere. In the end, if your goal was a native application that truly works natively on all 3 platforms, the sort of thing users take for granted and never notice, you'll be rewarded.

But if you don't really, truly, earnestly care about targeting all 3, if only Windows has to be high quality and the others are afterthoughts, or if you just want to get things done as quickly as possible with minimal learning, you'll probably find wxWidgets to be far too much trouble.

Comment Re:Is it still relevant? (Score 4, Informative) 147

I use wxWidgets. I've mostly used verson 2.8 with ansi strings.

As far as I know, wxWidgets is the only cross platform toolkit that compiles to program that use the native GUI widgets on Windows, Mac and Linux.

You can usually spot Java and QT programs. They work, but things look a little out of place. Firefox does a better job, but things start going wrong if the user customizes or "themes" their desktop. Emulating the look of native GUI controls just isn't ever as good as actually using the native ones.

wxWidgets isn't perfect. I've hit a good number of bugs. It has a pretty steep learning curve. It also doesn't seem like "new" technology. But it works. If you want to write a native application that truly looks and feels and actually is native on each platform, short of writing the code 3 times, wxWidgets is pretty much the only toolkit.

Comment Re:Pardon my ignorance but... (Score 5, Informative) 273

I have read the entire spec, except a few parts about the physical molding/construction of cables and some parts of the last chapter about hubs. I've read many of the change notices that come in the zip file with the main PDF. I've also read the entire HID, Mass Storage class specs, most of the CDC class spec, substantial parts of many of the others, and a good portion of the OHCI spec. I've also read the datasheets for numerous chips, API documentation for Mac, Windows and Linux (at least libusb on Linux), and numerous other related documents.

Yes, there's a lot of documentation. No, I haven't gouged my brain out.

I have implemented 2 USB device-side stacks on microcontrollers (a.k.a. "bare metal") from scratch. Both are commercially successful and in widespread use on Teensy 2.0 and 3.0 and numerous projects and products people have designed and incorporated my code.

While you've done neither, I most certainly have done both: read the specs and implement portions of USB. I would disagree with your opinion that summarizes USB as "horrible".

It's actually a pretty well though out system.

Comment Much more than 1 week old (Score 4, Informative) 91

My site uses vBulletin.

This vulnerability is MUCH older than the 1 week mentioned in Slashdot's summary.

Several weeks ago the vBulletin folks sent an email advisory to all registered users (eg, people who actually paid for the software) . In fact, they sent 2 messages. The first warned of this vulnerability and suggested immediately deleting the install folder, if it wasn't already deleted as recommeded. The 2nd message, only a couple days later announced a new version which fixed this bug, even if the install folder was not deleted.

vBulletin has a web-based admin control interface, separate from the main forum. Even in the old, vulnerable versions, the admin section will not work if the install folder still exists. It just displays a message saying you must deleted the install folder before you're allowed admin access to your own forum. Any sites that were vulnerable to this bot must have been set up by just unpacking the zip file and then running the wizard to set up the database. It specifically tells you to delete the install folder at the end of that process. So anyone who got hit not only ignored that instruction, but also never even used the admin section of their forum, because it's intentionally disabled to force people to properly delete the install folder.

Sure, there may be 30-some thousand forums out there with this problem, but every single one of them was set up so poorly that the forum owner never even accessed their admin interface.

Comment Re:Lots of little boards (Score 3, Interesting) 130

Well, there is an Arduino with 84 MHz clock, called Arduino Due. It's 32 bit ARM, not 8 bit AVR. It sells for $49.

My little company makes an Arduino compatible board called Teensy 3.0, which is technically spec'd 48 MHz but overclocks to 96 MHz without any trouble. It sells for $19.

There are also other less compatible alternative boards, like ChipKit, Maple and Fubarino, with clocks speeds in the 50 to 80 MHz range, and attractive prices. Their compatibility isn't as good, which might be a factor if you're using libraries or code from websites. If you're wring all your project's code, that's less of a concern.

These boards also tend to have more RAM and other built-in resources.

Comment Re:Sounds.... Expencive (Score 4, Informative) 130

The "someone" mentioning 230 Hz is INTEL, in their Galileo FAQ.

http://www.intel.com/support/galileo/faq.htm

The question is near the end, specifically "What is the maximum rate at which GPIO output pins can be updated?"

The answer, which you'll see if you click that link and expand the question to see the answer, is:

The GPIO output pins on Intel® Galileo are provided by an I2C Port Expander that is running at standard mode (100 kHz). Each I2C request to update a GPIO requires approximately 2ms. In addition to software overhead, this restricts the frequency achievable on the GPIO outputs to approximately 230 Hz.

Comment Re:The most important features (Score 2) 130

The datasheet, linked from this Slashdot article, shows a full-page diagram on page 3. On the left side are the usual 6 analog inputs. On the right side are the usual 14 digital pins, with 6 clearly indicated as PWM capable.

On page 4, it says:

  14 digital input/output pins, of which 6 can be used as Pulse Width Modulation (PWM) outputs;
          o Each of the 14 digital pins on Galileo can be used as an input or output, using pinMode(),
                digitalWrite(), and digitalRead() functions.
          o The pins operate at 3.3 volts or 5 volts. Each pin can source a max of 10mA or sink a maximum of
                25 mA and has an internal pull-up resistor (disconnected by default) of 5.6k to 10 kOhms.
  A0 A5 - 6 analog inputs, via an AD7298 analog-to-digital (A/D) converter (datasheet)
          o Each of the 6 analog inputs, labeled A0 through A5, provides 12 bits of resolution (i.e., 4096
                different values). By default they measure from ground to 5 volts.
      2
  I C bus, TWI, with SDA and SCL pins that are near to the AREF pin.
          o TWI: A4 or SDA pin and A5 or SCL pin. Support TWI communication using the Wire library.
  SPI
          o Defaults to 4MHz to support Arduino Uno shields. Programmable up to 25MHz.

On page 5, the list continues:

          o Note: While Galileo has a native SPI controller, it will act as a master and not as an SPI slave.
                  Therefore, Galileo cannot be a SPI slave to another SPI master. It can act, however, as a slave
                  device via the USB Client connector.
  UART (serial port) Programmable speed UART port (Pins 0 (RX) and 1 (TX))
  ICSP (SPI) - a 6 pin in-circuit serial programming (ICSP) header, located appropriately to plug into
    existing shields. These pins support SPI communication using the SPI library.
  VIN. When using an external power source you can supply 5V through this pin.
          o Note: When using this pin to supply power to the board, it must not be greater than 5V.
  5V output pin. This pin outputs 5V from the external source or the USB connector. Maximum current
    draw to the shield is 800 mA
  3.3V output pin. A 3.3 volt supply generated by the on-board regulator. Maximum current draw to the
    shield is 800 mA
  GND. Ground pins.
  IOREF. The IOREF pin on Galileo allows an attached shield with the proper configuration to adapt to the
    voltage provided by the board. The IOREF pin voltage is controlled by a jumper on the board, i.e., a
    selection jumper on the board is used to select between 3.3V and 5V shield operation.
  RESET button/pin
          o Bring this line LOW to reset the sketch. Typically used to add a reset button to shields that block
                  the one on the board.
  AREF is unused on Galileo. Providing an external reference voltage for the analog inputs is not
    supported.
          o For Galileo it is not possible to change the upper end of the analog input range using the AREF pin
                  and the analogReference() function.

Comment Re:pricing? (Score 5, Informative) 130

Several articles have appeared claiming "under $60".

For for free if you're one of about 50000 students or apparently about 400 people who attended a talk at Maker Faire last weekend in Rome.

However, if you check out Intel FAQ, there are a number of Arduino compatibility caveats. Probably the main on is the I/O pins are controlled by an I/O expander with approx 2ms latency. That's pretty slow compared to Arduino's slow digitalWrite() function, which run about 4us on 16 MHz AVR, or direct AVR register access, which takes 125ns.

The processor runs Linux and Arduino sketches are compiled to native Linux userspace programs, so it probably will open up a lot of possibilities.

Comment Not very useful for real projects (Score 3, Insightful) 214

Having created and published projects using both Raspberry Pi and Beaglebone Black, and speaking as someone who regularly publishes electronic projects and open source code (largely on the Arduino software), I'd echo what others have said... this thing really misses the mark, considering the high price and lack of I/O.

Beaglebone Black is really the one Linux-based board that's doing everything right (except for the head start Raspberry Pi enjoys). The price is under $50, size is small, there's a LOT of I/O with advanced capabilities, performance is ok, and the feature I love the most on BBB: it has a decent performing 2 GB flash disk soldered to the board.

As someone who publishes code for projects, a built-in flash disk with dependable performance a huge benefit. With a Raspberry Pi, you have no idea how their system will perform if disk I/O matters. They might use a SanDisk Ultra card (or whatever SanDisk is calling them now), which can do about 1 to 2 Mbyte/sec with random seeks, still slow by PC standards, but fast enough to be useful. But odds are they'll use a cheap SD card, where the random I/O performance can be as slow as 20 kbytes/sec.

If Intel really wants to rule this Linux-based project world, they'll need come out with something in the $40 to $60 price range, maybe with high-end options approaching $99. A good performing built-in SSD, enough RAM, lots of I/O, and good connectivity (USB, Ethernet, Wifi) are the killer features people need for real projects. A faster x86 processor on an overpriced, feature-poor board without SSD is never going to compete with great products like the Beaglebone Black.

Comment Re:It is a MakerBot after all (Score 1) 185

I'm in the tropics as well and I don't use AC because I'm on the coast and it's not too warm but I had the same humidity issue that I had been living with for years. People had suggested getting a dehumidifier but I assumed they used almost as much current as an AC. But this year I had family coming to visit from the States and I looked more closely at dehumidifiers and found that they weren't as inefficient as I thought. I bought a Panasonic rated at 200watts and modified it with a hose that runs the water outside. It extracts a surprising amount of water from the interior air when it is warm and humid like say five gallons or twenty liters a day.

I run that water outside into a bucket and then pump it into a mist sprinkler head on a timer powered by an aquarium pump to cool the yard and it has a dramatic effect on the overall climate of the house while using fairly minimal amounts of electricity. If you're in a coastal tropical area it's a nice way to go.

Slashdot Top Deals

So you think that money is the root of all evil. Have you ever asked what is the root of money? -- Ayn Rand

Working...