Time for a new release?

Started by round157, March 07, 2025, 18:06:43

Previous topic - Next topic

round157

https://www.syntaxbomb.com/smallbasic/time-for-a-new-release!!/

Hi....one year again. Will there be a new version be released in the near future? 

chrisws

I'm working on wrapping up the android update. This will have the updated audio handling, J7Ms new icon plus a new API for USB Serial handling.
It will be on the test channel for a week or so, then I'll switch it to the release channel unless someone finds something. 

round157

Quote from: chrisws on March 15, 2025, 23:24:26I'm working on wrapping up the android update. This will have the updated audio handling, J7Ms new icon plus a new API for USB Serial handling.
It will be on the test channel for a week or so, then I'll switch it to the release channel unless someone finds something.
Wow...thanks a lot. 

round157

A small suggestion... 

I wanted to download the HTML version of the language reference here but only the TXT version was available. Including the HTML version of the language reference in version 12.28 of SmallBASIC will be convenient for users. 

https://smallbasic.github.io/reference/sbref.txt



Tinine

Quote from: chrisws on March 15, 2025, 23:24:26I'm working on wrapping up the android update. This will have the updated audio handling, J7Ms new icon plus a new API for USB Serial handling.
It will be on the test channel for a week or so, then I'll switch it to the release channel unless someone finds something.
Oh I'm excited again  :D

I don't suppose this has BlueTooth comm's?

In RFO BASIC, for example, we have BT.OPEN, BT.CONNECT, BT.STATUS, BT.READ, BT.WRITE, etc., etc.



chrisws

Quote from: Tinine on March 18, 2025, 14:36:34
Quote from: chrisws on March 15, 2025, 23:24:26I'm working on wrapping up the android update. This will have the updated audio handling, J7Ms new icon plus a new API for USB Serial handling.
It will be on the test channel for a week or so, then I'll switch it to the release channel unless someone finds something.
Oh I'm excited again  :D

I don't suppose this has BlueTooth comm's?

In RFO BASIC, for example, we have BT.OPEN, BT.CONNECT, BT.STATUS, BT.READ, BT.WRITE, etc., etc.



I made the usb api to be compatible with teensy 4.0 but it should also work with arduino. Here some example code

import android
usb = android.openUsbSerial(0x16C0)
while 1
  input k
  n = usb.send(k);
  print "sent "; n
  print usb.receive()
wend

It looks like I could also add BT support in a similar way - BT classic, not BLE.

Tinine

Quote from: chrisws on March 18, 2025, 21:08:36
Quote from: Tinine on March 18, 2025, 14:36:34
Quote from: chrisws on March 15, 2025, 23:24:26I'm working on wrapping up the android update. This will have the updated audio handling, J7Ms new icon plus a new API for USB Serial handling.
It will be on the test channel for a week or so, then I'll switch it to the release channel unless someone finds something.
Oh I'm excited again  :D

I don't suppose this has BlueTooth comm's?

In RFO BASIC, for example, we have BT.OPEN, BT.CONNECT, BT.STATUS, BT.READ, BT.WRITE, etc., etc.



I made the usb api to be compatible with teensy 4.0 but it should also work with arduino. Here some example code

import android
usb = android.openUsbSerial(0x16C0)
while 1
  input k
  n = usb.send(k);
  print "sent "; n
  print usb.receive()
wend

It looks like I could also add BT support in a similar way - BT classic, not BLE.

Awesome  8) BT Classic is preferred, actually. Not had great experience with BLE.

round157