Search found 17 matches

by hoverbeek
Fri May 22, 2020 12:50 pm
Forum: Discuss!
Topic: Power sources
Replies: 8
Views: 3852

Re: Power sources

Ok, faster operation makes sense!
by hoverbeek
Thu May 21, 2020 5:52 pm
Forum: Discuss!
Topic: Power sources
Replies: 8
Views: 3852

Re: Power sources

The DM41X has the same hardware as the DM42.
by hoverbeek
Thu May 21, 2020 4:49 pm
Forum: Discuss!
Topic: Power sources
Replies: 8
Views: 3852

Re: Power sources

Why would you want that?

The DM42 does hardly draw any power. So the battery lasts for years.
I am still on my factory delivered battery.

Expect to change the battery once every few years.
by hoverbeek
Thu May 21, 2020 2:36 pm
Forum: C47/C43, WP43, WP34S
Topic: WP43 News
Replies: 2102
Views: 758358

Re: 43S News

Just call me Harald. Did you try this on a clean Mac? I test the app on my development Mac, so I don't have a clean Mac either. The app needs GTK. I have not tested it, but this could be the runtime version of GTK: https://www.gtk.org/docs/installations/macos/ If this runtime works I will put that i...
by hoverbeek
Thu May 21, 2020 11:05 am
Forum: C47/C43, WP43, WP34S
Topic: WP43 News
Replies: 2102
Views: 758358

Re: 43S News

For the people who want to try the WP43S on the Mac:

https://gitlab.com/Over_score/wp43s/-/t ... 20binaries
by hoverbeek
Wed May 20, 2020 10:13 am
Forum: C47/C43, WP43, WP34S
Topic: WP43 News
Replies: 2102
Views: 758358

Re: 43S News

Cannot wait to hold this fantastic device - being much more powerful than Voyager 2's computer nodes combined - in my hands 😁 Just to reiterate. You can already today. Buy an DM42 and reimage it with our beta versions. Change the keys by printing an overlay. If you look at the sides of the DM42 it ...
by hoverbeek
Mon May 18, 2020 8:35 pm
Forum: C47/C43, WP43, WP34S
Topic: WP43 News
Replies: 2102
Views: 758358

Re: 43S News

Walter wrote:
Mon May 18, 2020 2:00 pm
... and for some with 72, 75, 1002, and even 1065 digits precision. Just for sake of completeness.
Can you elaborate when we use what precision and why?
Since we are number fetishists, I think the audience would love to hear this.
by hoverbeek
Mon May 18, 2020 12:47 pm
Forum: C47/C43, WP43, WP34S
Topic: WP43 News
Replies: 2102
Views: 758358

Re: 43S News

I was looking at the WP43 code. It looks like it is written in C. Indeed, it is. I was looking at the functions, for example, "cos.c". I am not a professional programmer by any means, though I am curious how you are doing this. The only thing you #include is a reference to the wp34s file....
by hoverbeek
Thu May 14, 2020 3:56 pm
Forum: C47/C43, WP43, WP34S
Topic: Installing WP43S on OSX (Mac)
Replies: 14
Views: 12193

Re: Installing WP43S on OSX (Mac)

A tip. Often I use 'make' and then I start the app a lot. Or first 'make' and then 'lldb wp43s' (WP43S in the debugger). On the terminal, enter 'make && ./wp43s' or 'make && lldb wp43s'. It does a make and if there are errors, it stops. If no errors are in the 'make', then it will st...
by hoverbeek
Fri May 08, 2020 5:18 pm
Forum: C47/C43, WP43, WP34S
Topic: Installing WP43S on OSX (Mac)
Replies: 14
Views: 12193

Re: Installing WP43S on OSX (Mac)

The trick is adding: CFLAGS += -g -O0 -v to Makefile Then 'make rebuild'. Then run the app from the debugger: lldb wp43s Then type r for run. The calculator now comes up and you can do whatever you want to test. If the application crashes, type bt (back trace). This will tell you exactly where the a...