Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Slashdot Log In

Log In

Create Account  |  Retrieve Password

Handspring's New Palm-OS Entrants: Color and Speed

Posted by timothy on Mon Oct 16, 2000 03:47 AM
from the will-the-deluxe-get-cheaper-now? dept.
ResQuad writes: "Handspring realeased a new palm top in their Visor collection, the Prism. It is $450 and have 65k colors, compared to the 3c's 256 colors. It also has an internal Li-Ion battery. Handspring also came out with another new palm, the Platinum. It is still gray-scale, but it is suposed to be 50% faster that the Visor Deluxe. This makes four palms out from Handspring." These are the same models discussed a few weeks ago, but now Handspring claims that they're shipping. Personally, I'm still pretty happy with my Deluxe, but the Platinum one looks very nice.
+ -
story
This discussion has been archived. No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More
Loading... please wait.
  • The Platinum is 5.4 oz (the same as the old Visors) and the Prism is 6.9 oz! That doesn't count the covers.

    I read six months ago that Handspring was working on creating a smaller Visor. So, why is the Prism 6.9 oz, which is heavier than the color CLIE, IIIc, and IPAQ?

    The biggest selling point seems to be that the screen displays 65.6k colors. Why is that important when the screen only has 25.6k pixels?

    Maybe if they had used a 320x320 screen, making the unit this large would be justifiable. But as is, I don't see how Handspring expects to sell many Prisms at $450.

    Bring on the color Vx!

  • RTF Web Page

    But since I'm such a nice guy...

    Prism product details [handspring.com] : [goatse.cx]

    Battery Life: 2 weeks or 6 continuous hours

  • Do they need any beta-testers for stuff like this?
    Just send it on over, I'd be glad to take a look at it for ya!
  • Go with an operating system built for this instead - Epoc. True 32-bit multitasking from the ground up.
  • Have you looked at the inside? It has a couple of small circuit boards, at least one of which appears to be the system memory. I wonder if they'll release a flash upgrade kit? (Like they did 3Com did for the Palm Pilots)
  • by alee (64786) on Monday October 16 2000, @02:31AM (#703684)
    Be careful here. You may be slightly misled by the 'photos' of the Visor.

    The Prism looks awesome in the photos, but remember that the resolution is ONLY 160x160 -- the same as the Palm IIIc. For those that have seen the IIIc, you will remember that it has a very grainy resolution.

    Although the Prism does have a higher color depth, and uses TFT color, unless the screen has a tighter dpi, you will probably find that it is only marginally better than the IIIc. Also, remember that it is thicker and heavier than a regular Visor.

    Be careful buying this blind -- I'm very interested in seeing a real one up close, in both indoor light AND outdoor light. As far as color goes outside, I have only seen 2 color LCDs that really work well outside -- the Sony hybrid LCD on their digital camera, and the Compaq IPAQ. The rest wash out completely.
  • As far as hardware limitations, DragonBall is a 32-bit processor, so it has an addressable memory space of 4G.

    But it's not virtual. So even if you maxed out the Dragonball VZ's DRAM controller with 64M, you'd still need some way of controlling fragmentation etc, because you don't have a hardware MMU to shuffle pages around.

    Why is controlling fragmentation important? Old Amiga hackers remember the pain of programs refusing to load, not because you didn't have enough memory left, but because you didn't have enough contiguous memory left. (If an app is expecting to be able to malloc a meg, the OS can't really reply "would you take two 512k chunks instead?".) That kind of behavior sucked back then, and it would suck even more on a PDA that stays up for weeks at a time.

    The most reasonable way to solve fragmentation on a 68000 is to address all memory through handles. Load up a raw 32-bit pointer to the start (or middle) of a chunk of memory, then do all addressing based on offsets from that pointer. Whenever nobody is using a chunk, the OS is allowed to move the data and the pointer---after the move, the data, relative to the pointer, will be in the same place.

    This is not a very Unix-y memory model. This is why nobody has ported perl to PalmOS. You'd have to change everything that assumed that a single 32-bit pointer was enough to access memory. Even if you could convince PalmOS to give you, say, a contiguous 2M chunk to use for malloc, and lock that region down forever (don't want pointers in there moving out from under us), you'd be back to the original problem of fragmentation.

    A 2M chunk would be unnatural for another reason. Until the 020, 68000 addressing modes can only reach +/-32k from a register. Plop your chunk pointer in the middle of a region and out pops...that 64k limit you're always seeing in PalmOS hacking. If you're willing to take the performance hit, you could *manually* add 32-bit offsets to an address register (and give up the offset addressing mode). But pretty soon this starts looking just like the near/far pointer tar pit from the bad old 8086 days.

    The newer versions of PalmOS are also moving closer to processor agnosticism with a HAL, which will sever its dependence on the DragonBall Series (MIPS, anyone? How about an IPaq, then? Mayhaps even Crusoe...).

    I still can't figure out what they're going to do to move beyond 160x160 or 160x240 screens. Those hundreds of third-party apps are almost all using absolute pixel positioning for form layout. Wait...I have an idea---what if we redefine old pixel positions as really being dimensioned in "dialog units", and...wait, nobody would actually do that...

    Unlike Microsoft, Palm is changing and eliminating its OSes primary weaknesses rather than saddling its developers/users/customers with archaic requirements, just like a company in a competitive market should.

    So, what should Linux people be doing? Sitting back and waiting for Palm to be the source of All Good Things?

  • Take a look at the VTech Helio (http://www.vtechinfo.com). It's about the same size and shape as a Visor, but it has a 75MHz MIPS processor, 8 megs RAM, a good LCD panel, audio hardware (voice memos), and it runs Linux. I got one at the Atlanta Linux Showcase from the Pocket Linux booth. They were selling them cheap to attract developers to their new Linux-based Java handheld platform.

    The Helio comes with VTOS, which seems to be a clone of PalmOS. It's actually pretty decent, and I'm using it until the Linux desktop stuff stabilizes. It uses Jot, a pretty good clone of Graffiti (I had no trouble switching over). This particular model retails for $180 or less, considerably cheaper than anything from Palm or Handspring (the Palm III series STILL sells for $250, which is exactly what I paid for mine 2 years ago).

    Palm has been selling the same basic palmtop for years. It's not bad at all (I'm a happy owner of a Palm III), but they're going to need to innovate more if they want to stay in the lead. It does its intended job well, but VTOS is just as good and runs on a much more powerful processor. I think Palm is currently riding on its name recognition rather than its features.

    -John
  • by Bazzargh (39195) on Monday October 16 2000, @02:37AM (#703687)
    One of the features described in Wired's article on this:
    http://www.wired.com/news/business/0,1367,39456, 00.html
    is that there is a (vaporware) attachment to make it capable of attachment to a projector for doing presentations. For me, this is (nearly) a killer app - no more lugging the laptop onto the plane. Right now I can only ditch the laptop if someone else is presenting too and I can email them slides...now if the Ansyr Primer PDF viewer (http://www.ansyr.com/) works on it (in colour) I'm in.
  • And other than the fact that everyone comes off looking like a charicature of Dr. Evil, the simple truth is that quality does not matter. When people start thinking that this stuff transcends business or even technology then it is doomed to fail. The really remarkable thing is, if the story is accurate, that Apple exists at all today given the acute megalomania of Jobs. The point here is that Palm OS is good, the hardware is solid albeit doesn't 'improve' as fast as some people would want. WinCe or whatever it is called is crap and the hardware is expensive, slow and constantly changing. But it gives the impression of givng the customer what they want. It gives the impression of solid features. Whether it does or not is irrelevant. What WinCe does not do is pretend to be the second coming. I love Palm and have used one or another for many years. It's great for what it does and given what I do with can't think of much they could do to improve it other than incrementally. But I do not accept the premise that it is Brilliant Art that Transcends Technology or Truth.

    The simple truth is that Palm &Co. better watch out that they don't become isolated in their own high opinion of themselves while MS and its philosophy of "A C+ was good enough for me at Harvard it's good enough for the shit we make for you.." stumbles across the finish line first.
  • Most of the new handhelds feature Lithium Ion batteries that don't have the memory features of the older Nickle-Metal-Hydride and Nickle-Cadmium types. In my experience using my HP 545, I get between 8-10 hours of solid use, with a CF storage card. I've gotten more without it. -WS
  • I hate these people. No 1-800 service number....Go to the website and try to leave feedback...on ANY of thier forms. They don't work. I have had 2 Visor Deluxes - the 1st one died after a week rather suddenly... the second one I have NEVER been able to perform a warm reset on. It always gets stuck in a boot loop and I must hard-reset it and lose my data.
    So I have owned 2 Handsprings, both of which were defective. Whenever I want to do anything about this fact, I have to pay to call the service line and sit on hold intermiably. Then they ask me questions like "Sir, are there batteries in the unit?" that make me want to hurt them. I will never buy from this company again no matter what they come out with. I'm sick of companies pushing out products before the proper QC is done. dammit. Chris
  • by Anonymous Coward
    >I still can't figure out what they're going to
    >do to move beyond 160x160 or 160x240 screens.

    The most sensible solution would be to go to 320x320 screens, and use pixel doubling routines for all apps that weren't marked as "PalmOS 4 compatible" or whatever - so they would look pretty much the same, and newer apps written for "palmOS 4" could take advantage of higer rez.

    Regards,
    Alex
  • most of these devices are still vapor. Symbian has had those pretty pictures up on their web site for years. I know because I've kept going back to see if anything changed. I fully agree that architecturally EPOC32 is the king of consumer electronics OSs. It's got practically everything WinCE has (except maybe the multimedia eyecandy) in a fraction of the space and at much higher speed. It's much more modular and expandable. But if they keep dragging their feet, Palm and WinCE will be so entrenched that they simply won't stand a chance. Look at Nokia and Ericsson, they're starting to cut deals with alternate OS suppliers on the side.
  • It is $450 and have 65k colors, compared to the 3c's 256 colors.

    First off, Never send a German to do an American's proofreading job.
    Secondly, doesn't the IIIc have more than 256 colors? I cite this quote from this AP article [boston.com] from the Business section of the Boston Globe:

    "Handspring executives said the 16-bit, $449 Visor Prism will be the best on the market, capable of producing more than 65,000 colors. That's more than sixteen times better than its closest competitor..."

    First off, 16-bit color means 65,536 colors. Secondly, the Prism will be 16 times more colors than its competitor (the IIIc). This means that the closest competitor outputs 4096 colors, or 12-bit; not 256 colors, or 8-bit. Furthermore, the cover of the IIIc box and demonstrations of the unit indicate a higher-than-256-colors output.

  • > Whenever nobody is using a chunk, the OS is allowed to move the data and the pointer---after the move, the data, relative to the pointer, will be in the same place.
    > This is not a very Unix-y memory model.

    How do you mean it's not very "Unix-y"? This is exactly how relocation in ELF works, it uses a register to store that magic offset, then indexes all relative symbols from it. ELF was indeed invented in the UNIX world.
  • So even if you maxed out the Dragonball VZ's DRAM controller with 64M, you'd still need some way of controlling fragmentation etc, because you don't have a hardware MMU to shuffle pages around.

    With Palm OS 3.0, there is only one storage heap (per memory card - current devices only have one card) and so having large code resources isn't a problem. Any given code resource still can't be more than 64k, but fragmentation problems aren't an issue as they were in previous versions of the OS.
    -From PalmOS.com

    If you're willing to take the performance hit, you could *manually* add 32-bit offsets to an address register (and give up the offset addressing mode). But pretty soon this starts looking just like the near/far pointer tar pit from the bad old 8086 days.

    The Motorola 68328 processor's 32-bit registers and 32 internal address lines support a 32-bit execution model as well, although the external data bus is only 16 bits wide. This design reduces cost without impacting the software model. The processor's bus controller automatically breaks down 32-bit reads and writes into multiple 16-bit reads and writes externally.
    -From PalmOS.com

    So, what should Linux people be doing? Sitting back and waiting for Palm to be the source of All Good Things?

    So what should Palm developers be doing, wasting their time porting bloated Unix tools to a decidedly (and purposefully) limited platform, for the sheer intellectual rigor of the excercise, or devloping for a fully functional OS that's well suited for the tasks it's asked to perform?

    Gimme a break. Linux is useful, no doubt. But I don't think it's going to be all things to all people, as some would posture. There are better tools more suited for certain tasks.

    If the Linux developers are having a tough time figuring out what to do , a much more useful pursuit would be developing a better way of syncing a Palm device to Linux. Right now there is no standard conduit API for Linux. For people who own PalmOS devices, that'd be a lot more useful than PERL for Palm.

  • Below is the first official review of the Visor Prism by Pen Computing Magazine:

    http://www.pencomputing.com/palm/Pen37/visorsprism platinum.html [pencomputing.com]

  • I still can't figure out what they're going to do to move beyond 160x160 or 160x240 screens. Those hundreds of third-party apps are almost all using absolute pixel positioning for form layout. Wait...I have an idea---what if we redefine old pixel positions as really being dimensioned in "dialog units", and...wait, nobody would actually do that...


    What you do is implement a new, updated OS on more capable hardware with a bigger screen, and by all means DON'T saddle yourself with backwards compatibility. Then run the old stuff in the extremely good Palm emulation that already exists. The emulator should be able to map the 160x160 dimensions to the new screen without too much difficulty.

    I'm hoping for someone to do this with Linux on the IPaq.

    Jon
  • by spoonyfork (23307) <spoonyfork@nOSpAM.gmail.com> on Monday October 16 2000, @02:51AM (#703709) Journal
    Now I can finally descreetly take my pr0n into the bathroom. No more lugging around that bulky notebook. Fewer odd-looks too from roommates too.
  • No, those pictures haven't been there for years. If you want me to, I can find out the exact date ;) Quartz was first demoed at Cebit 2000 (I was there) etc ...

    The devices are vapour in so forth that only Ericsson has showed Quartz running on actual hardware (look at their web, the Communicator platform)

  • or isn't the Palm platform advancing much anymore? I mean, it's nice that a couple more Handspring colors are available, but come on, the two new offerings are nothing to write home about. For the Platinum they basically jacked up the clock speed a bit and charge you $50 for that. The color, ok it's nice that they didn't have to make it larger than the regular Visor (well, I guess 0.1" thicker), but other than color it offers nothing else--at $450. Let's not loose sight of the fact that we're starting to get less and less for the money here compared to the WinCE platform--and I'm no great proponent of WinCE by far. Palm and their cohorts can talk it up any which way they want--more focused OS, leaner, no fluff, etc--but at the end of the day they charge you the same as WinCE for a fraction of the hardware capabilities.
  • by alee (64786) on Monday October 16 2000, @03:19AM (#703713)
    Although in Japanese, you can see the Visor Prism in operation at the following ZDNet sites:

    http://www.zdnet.co.jp/macwire/0010/16/r_viprfi.ht ml [zdnet.co.jp]
    http://www.zdnet.co.jp/macwire/0010/16/r_viprfi2.h tml [zdnet.co.jp]

  • After many years of owning a Palm and writing a couple of hello-world-level programs, I finally got a copy of Palm Programming and sat down a bit with it. The more I read, the more limited the Palm platform started to appear. Until your post I didn't realize that the 16-bit signed offset was a Dragonball limitation, I thought that was a Palm thing. I was reading about the 64k segmentation model, and how Code Warrior can handle some of the work for you. As you say, that brought back shades of 80x86 real mode programming.

    I don't know, even simple things turned me off: why should there be two calls, LoadLib and FindLib, and why should the programmer be in charge of doing refence counting and unloading of libraries? Why couldn't OpenLib and CloseLib do that behind the scenes, without duplicating all that code for each program that used libraries? It seems that doing it the way they did precludes multitasking at some future point.

    Anyway, I'm starting to wonder whether Palm OS is really as great as it's made out to be. It's one thing to encourage programmers to keep the apps small and simple, but it's quite another if you force them to do so through architectural limitations and artificial shortcoming. Forcing small apps just because you yourself as an OS creator can't really see any use for large apps on a handheld smacks of shorsightedness.
  • Oh, I fully agree with what you say, including their targeted use: "quick and easy access to information". But the more you charge for your devices, the more extra functionality you have to throw in, and the less the old line of "it just provides what you need, and well" flies. Because otherwise you put yourself into a luxury toy niche. Expensive, does less than comparable devices, but it's got this name brand label. Kind of like the Palm V--it's mostly an executive toy, even though I'm sure there are people in this newsgroup that would argue how indispensible it is. Most people under bang-for-the-buck constraints get something else, like a IIIxe or Visor Deluxe.

    What I want to see most in the Palm is a larger screen--more pixels horizontally, but especially vertically. The Palm is used more and more for business data entry, electronic forms etc, and for that sort of use 160x160 pixels can get constraining very quickly. Even one hundred extra vertical pixels could make a huge difference. And something like the Sony jog dial would be insanely great too, though it should be integrated at the OS level rather than the app level (like the Sony's).
  • I must admit that this device looks very cool, but I wonder how long it will run, compared to other Palm devices: both speed and colors are known to drain batteries.
  • The biggest reason for me (at least right now) is that I cannot currently buy an iPaq. I obviously cannot comment on the new Visors - this is an anti-iPaq (or anti-Compaq to be more precise) post rather than a pro-Visor one - but I do not know of anywhere I can currently buy an iPaq.

    Anyone know a place? Ideally retail, with the iPaq in stock, within an easy drive of Palo Alto/Mountain View. Alternatively, somewhere in the UK. E-mail me direct - I'll go and buy one and then come back here and post it. That way, I get one before the store gets /.ed :-)

  • The tech specs linked to on that page mention that it gets six hours of continous use, or they estimate about 2 weeks of normal use (not if you are playing cool color games on it all day though!).
  • I'd wait for the Quartz devices to come out personally. Epoc runs circles around both PalmOS and Pocket PC, and it has _so_ many devices in the works ... true WIDs! (Wireless Information Devices)

    See Symbian's website [symbian.com] for more info, or just browse around on Ericsson's [ericsson.com] for some pictures of the R380 smartphone running Epoc ... or look at the devices Motorola, Sanyo, Psion etc will release.

    The future looks bright indeed!

  • They're doing more than that... they're working with Apple to rewrite the OS!
  • That's true. No multitasking, only various hacks (as dos had).
    But no one says you have to run palmos on it.
    ucLinux! [uclinux.org]
  • From the web page, it still seems to require a TRG, so it probably hasn't been ported to the high end Visors. Even if it does, you still have to live within the limitations of uClinux (no MMU and limited multitasking, according to the web page).

    Since the iPaq (with Linux, of course) may not be much more expensive once they ship in larger quantities, why not just get that?

  • by Mike Buddha (10734) on Monday October 16 2000, @12:38AM (#703742)
    The PalmOS 3.5 Memory architecture allows at least 128K for its dynamic memory heap, which is huge in the Palm world (Palm apps are tiny). PalmOS 3.5 also has a dynamic memory heap that changes as the amount of memory on the machine goes up. As far as hardware limitations, DragonBall is a 32-bit processor, so it has an addressable memory space of 4G. I don't see much of a limitation here.

    The newer versions of PalmOS are also moving closer to processor agnosticism with a HAL, which will sever its dependence on the DragonBall Series (MIPS, anyone? How about an IPaq, then? Mayhaps even Crusoe...).

    Unlike Microsoft, Palm is changing and eliminating its OSes primary weaknesses rather than saddling its developers/users/customers with archaic requirements, just like a company in a competitive market should.
  • Ok, maybe not "years", but they've been there at least since spring of 1999, because that's when I started visiting them. I still consider the platform vapor, until I can actually get a Palm form factor device at a store.
  • Platinum ... is suposed to be 50% faster than the Visor Deluxe.

    This will please people who play Quake on the Palm. For everybody else, I think the relevent response is, "So what?"

    __________

  • So what's cheaper... buying new rechargeable batteries after a couple years, or buying new Alkalines every 2 weeks for 2 years?

    You don't get to replace the batteries in a lot of the devices that have built in rechargables. Handspring is currently /.'ed so I can't check. However the palm V and Vx for example don't let you change the batt. The custom rechargables are also pretty expensave (I assume because the market is small and there arn't many comperiters). For example a new battery for the Canon PowerShot 100 is about $60, while four AA rechargables are about $3. The four AAA's in my Visor were also about $3 (plus $30 for the charger).

    So it is really more like "buy AAA's every month or a new Palm in two years". Of corse in two years you will probbably want a new Palm, but it would be nice if the old one had some resale value!

    Given a choice I would like NiMH AAA that recharge when the unit is in the cradle. That would be more convenient then using NiMHs in the current Visor/Palm, and would be a lot cheaper in the long run then custin batts. I don't know why it isn't done, the legal issue can't be too bad because Semmins does that on the GigaSet phones (well NiCADs, but still if you put Alkalines in it they will explode or leak...)

  • Anyway, I'm starting to wonder whether Palm OS is really as great as it's made out to be. It's one thing to encourage programmers to keep the apps small and simple, but it's quite another if you force them to do so through architectural limitations and artificial shortcoming. Forcing small apps just because you yourself as an OS creator can't really see any use for large apps on a handheld smacks of shorsightedness.

    PalmOS and the Palm hardware (and Visor hardware) has lots of short term thinking in it. I think that is part of why it was the only succesful PDA. I don't think it will serve them as well in the long run, but if they hadn't done it they wouldn't even have gotten this far.

    The hardware limitations are easier to forgive, how could they have hit their price point with a CPU with a MMU? Or high clock rate? If they had put in more memory what would have happened to battery life? And how could the feeble CPU search it all? The software ones are harder to forgive (esp things like LoadLib and CloseLib that have no good reason not to do ref counting in the OS).

    Will Palm manage to switch to a longer term mode? Who knows, I hope they can. Switching to faster CPUs will help (it is hard to justify making resulition independent programs when they will draw t-o-o-s-l-o-w on a 16Mhz CPU), but that alone won't fix things. Switching the entire OS (with a compatability box for old apps) may not help either as it will kill the investment programmers have made in learning the current OS, and will mean existing code will have to be ported to the new OS before it can get any benifits. Thwy have to face a similar hurdle Apple faced going from the 680x0 to PowerPC, and also the hurdle Appl faces going to OSX, or Microsoft has repeatldly bumped into trying to get people to switch to NT or Win2K.

  • I don't know if the feeble hardware platform is really that much of an excuse. My Amiga 500 was running on a 68000 at 7.49 MHz and its windowing performance was quite acceptable, while doing a lot more than I would expect off a Palm. True, it had some hardware support, but by today's standards that was quite feeble.

    It had really really really good hardware acceleration compaired to the none that the DragonBall has. It also had much more effectave memory because the 512K/1M/2M/8M in the Palm/Visor includes all the storage that would have been a stack of floppies or a hard drive on the Amiga.

    Besides your Amiga may well have sucked for the task "look through 8M of data for the string 'wing' - decoding any and all file formats as needed" which is exactly what the Palm find button does (assuming you have a 8M palm), and was one of the cheif "excuses" given by Hawkings to limit the memory.

    Motorola could easily build some simple graphics acceleration hardware into the Dragonball (haven't they already?) to help a bit.

    If Mot had they might have lost in the pager market (where the DragonBall also sells, see the black berry), or the programable remote market (Phillips Pronto and the Mirantz work-alike), or...

    I'm just perplexed that they went with a CPU that doesn't offer a true clean 32-bit architecture without segementation and all.

    The DragonBall has a fine 32 bit model ('tho maybe only 24 bits get off the chip). It has a limited immediate offset, but so do a lot of CPUs. Including the 80386. Including the SPARC. It isn't segmentation, it just means you can only do "LOAD (A2+32000), D2", and not "LOAD (A2+64000), D2", you would need "ADD #64000, D2; LOAD (A2), D2" (trashing A2, which you may need to copy to another register or something...). (P.S. sorry if I don't quite rember the 68000 asm syntax, it is has been about 10 years since I wrote any!)

    Aren't there embedded 386 derivatives that could have fit the power and price bill equally well? Maybe not, but I'm wondering.

    I don't know of any 386 derivataves that are as cheap as the DeagonBall, consume as little power, and have the LCD controler, memory controler, chipselects, and pretty much everything else built into it. Plus the 68000 is nicer to hand code for.

    Besides the thing the Palms could use but don't have is an MMU. Sure it can't page in from a disk, but it could keep the flaky copy of "Pocket Crack Monkey" from trashing my phone list! Or allow things to page into and out of FLASH letting power off mode be a real power off...

  • No uCLinux for the Handsprings, they don't have programmable ROM.
  • Personally, I'd be a lot more interested in working on this if the Palm devices spoke some standard, open protocol for synchronization.

    Check this out. [syncml.org] When it's finalized, it ought to provide a reasonable standard for synchronization.

    So me saying "Linux people" was a mistatement. I hope you get what I meant.
    No problem. Got it.
  • I agree on the handheld movie front, but handhelds and mp3 are (nearly) a good fit. I would like to reduce the amount of electronics I carry - to *one* power supply, *one* screen, *one* set of rolodex/calendar apps, *one* set of earphones/mic. Unless the mp3 player fits in there somewhere I'll be mighty disappointed. (I carry a Palm Vx and Nokia 7110 everywhere, I'm loath to carry any more)

    The mp3 player (IMHO) fits in as part of the headset, not the handset. All the handset should need to do is sequence and stream stuff, eg over bluetooth, and leave mp3 decoding to a dedicated codec. NB that mp3 over bluetooth is not a bad fit as you need to compress the sound for transmission over a limited bandwidth network anyway - so why should the handheld decode anything? In this scenario the handheld mainly acts as a memory device.

    WinCE comes nowhere near this ideal (nothing does, yet) and I agree with your main point that handhelds should stick to the KISS principle - mostly. However, handheld (computers) should be expected to supercede other devices which are successful _as_handhelds_ (phones, media players, radio recievers).
  • by Max von H. (19283) on Monday October 16 2000, @01:06AM (#703771) Homepage
    If your Palm 3 eats up its batteries, there's a few things that you may want to check:

    - Leaving the Palm (only for units running on alkaline batteries) in its cradle drains the batteries. There's a *very* easy fix for that (a wire to cut in the cradle). You can find detailed instructions here [conklinsystems.com]

    - Perform a warm reset, it often solves lots of problems. There's plenty of info on usenet, and I strongly recommend comp.sys.palmtops.pilot, there's heaps of guys who probably have all the answers to any question...

    On average, my Palm IIIx runs about 18 hours on 2 AAA el-cheapo alkaline batteries, about 45 days of use. I once managed to run the beast a whoping 34 hours on a pair of the same batteries. Uptime hack is pretty handy, and once you get to know your batteries' discharge curve you can really guess how long they'll last (I have found many variations, even between batteries from the same pack).

    Nevertheless, I really wouldn't mind a Palm Vx. The lithium-Ion battery is a dream to use, and if you know how to use them properly (recharge them as often as possible, never empty it totally and never, ever, leave the device usused with an empty battery).

    Cheers,

    /max


  • I really don't like those rechargable batteries. They have this nasty tendency to become much less efficient over time, so you end up with a device you can only run for about 5 minutes within a couple of years. I'm not sure I'd be willing to drop half a grand for one of those.

    Of course, I still want a wearable with an optical display :-)

  • Handsprings are still way ahead of the Palm platform.

    You're overlooking a serious feature in the Visors: Springboard expansion.

    The basic system doesn't really need much more evolution - the color Visor is really about all you need in a platform, since Springboard gives you so many options.

    Right now, you could turn your Visor into a cell phone, a GPS receiver, an MP3 player, a MIDI instrument, an Oscilloscope, a Data capture device (16 analog inputs), etc. All with Springboard modules.

    Try to do *all* of that (not just some) with a Palm. Forget it.
  • Springboard is great, no doubt, I've liked it from day one. But there are serious deficinecies in the Palm OS and the hardware architecture itself. For example, a lot of the potential applications that the Springboard enables require high bandwidth to memory/display, larger memory capacity etc. And while Palm would like to see themselves in a market of one, they do have competitors that are catching up. One day it will not be enough to say "look, if you want this or that capability, just buy the right Springboard module" (particularly since Palm doesn't support Springboard anyway). The competitors will say "hey, we have all those capabilities in the box" already. That's hard to argue with.

    In the days when Palm only claimed to have a highly focused PDA that does just what you need and does it well, they had a certain ground to stand on--as their market share proves. But the more they try to be all things to all people via expansion etc, the more Microsoft et al have a point when they say "hey, we can already do all those things, out of the box". In other words, the keep-it-simple mantra was great until now to gain market share, but now that they ARE top dog, they will have to actually fight to stay there.
  • I don't know if the feeble hardware platform is really that much of an excuse. My Amiga 500 was running on a 68000 at 7.49 MHz and its windowing performance was quite acceptable, while doing a lot more than I would expect off a Palm. True, it had some hardware support, but by today's standards that was quite feeble. Motorola could easily build some simple graphics acceleration hardware into the Dragonball (haven't they already?) to help a bit. I'm just perplexed that they went with a CPU that doesn't offer a true clean 32-bit architecture without segementation and all. Aren't there embedded 386 derivatives that could have fit the power and price bill equally well? Maybe not, but I'm wondering.
  • If you ever take a computer architecture class, you'll learn that simply doubling the processor speed doesn't give you a machine that can execute code twice as fast. There are many other factors involved in determining a computers computational speed.

    I'm not exactly sure what they are using to base their "50% faster" expectation on though. Anybody know what kind of benchmarks exist for PalmOS? Global Searches?
  • Go with an operating system built for this instead - Epoc.

    There are no palm-sized machines that run EPOC. The clamshell sucks. If the EPOC partners came out with a machine that was like the ones everybody has been buying, they'd probably catch on a lot bigger in the US.

  • Remember that the Visor runs a CISC processor (Dragonball EZ, basically a 680x0 based microcontroller), which is very efficient in code size. Also, Palm apps are well known for being efficient in use of data space.

    I have at least 30 third party apps, including a web browser with 1 MB cache, in a 4MB Palm IIIx. I've just upgraded to a Visor with 8MB, but that's largely for web browsing and to read books on the thing. If you just want to use it as an organiser, even 2MB is overkill.

    Having said that, the iPaq is tempting because it can run Linux - although there are probably few useful apps for Linux at present, the stability is attractive (my Palm III just had to be hard-reset, losing all data - first time in months, but still...)