hackerjimbo

Results 30 comments of hackerjimbo

On 11/07/2020 11:35, Daniel Mårtensson wrote: > || > > And now to the error. Not sure what it means. But it close the spring > boot application. > >...

That's because it's got nothing to do with the `enum`s, it's all about signal handling. Signal 4 is illegal instruction rather than your earlier signal 11 (segmentation fault). @DanielMartensson, what...

OK, I now have no idea why it's not work. It _should_ get this right.

I make a lot of use of OOP on my hardware drivers. A great (and very recent) one was talking to the SH1106 display driver. This is available via both...

The `v7l` means that it's a 64-bit processor operating in 32-bit mode. You've also got a more recent model than I because I have the 1.1 version. Although the _other_...

Just for reference for @savageautomate and others, on the Pi Zeros I'm using: ``` openjdk 11.0.7 2020-04-14 LTS OpenJDK Runtime Environment Zulu11.39+61-CA (build 11.0.7+10-LTS) OpenJDK Client VM Zulu11.39+61-CA (build 11.0.7+10-LTS,...

No. Pi4J-v2 is based on Java 11 and uses the extra features of that. The issues aren't with the language version but with the binding to PiGPIO. I _think_ we've...

I'd like to get the known issues fixed and publicly available. Then we'll see which of yours remain.

For reference, the correct flags to gcc seem to be -march=armv6+fp -mfloat-abi=hard -mfpu=vfp -marm. That final -marm seems to be because by default the compiler emits thumb mode code and...

Investigating further it appears that while gcc _is_ correctly build v6 code, the support libraries are built with the default v7 code. This would mean that the .o files are...