have a read about a circular queue (buffer).to start with try something easy like:// pseudo code so, probably wont compile
#define MYUART HUART2 // or whatever
uint8_t rxBuffer[0x20]; // nb: I'm cheating: power of 2 means I can use 0x1F as a mask
u...
it might take a little while for you to get enough GPS sentences to fill 1000 characters (which is when RxCpltCallback will be called).BTW, it's not great form to use a infinite loop ('while(1)") in your callbacks (even if you're just playing around)...
Well, I upgraded to (K)Ubuntu 18.10 and can no longer get it to work using update-java-alternatives - even (especially?) with openjdk-11 which has openjfx installed. Tried a few things to get this going unsuccessfully: a PPA for Ubuntu that install...
Caused by: java.lang.NoClassDefFoundError: javafx/application/Applicationthat's your problem there - you say you have installed JavaFX - investigate _which_ JREs you have installed (and which one has access to JavaFX libraries).On my Ubuntu box there...
Posted on March 22, 2018 at 01:05I am on (K)ubuntu 17.10 and using openjdk version '1.8.0_151'OpenJDK Runtime Environment (build 1.8.0_151-8u151-b12-0ubuntu0.17.10.2-b12)OpenJDK 64-Bit Server VM (build 25.151-b12, mixed mode)I have been using 4.25 s...