Other B4R beta is available for download!

Status
Not open for further replies.

Celso

Member
Licensed User
Longtime User
Tks Erel, I'm using arduino a lot of time,!!
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
Beta #5 is now available for download.

It adds the selected board and port to the status bar:
SS-2016-04-12_17.05.30.png


Note that you can click on it to open the board selector dialog.

It also fixes an issue related to boards with CDC serial.
 
Upvote 0

LWGShane

Well-Known Member
Licensed User
Longtime User
Wow, the libraries are open source? Awesome!
Congrats to @Erel for making a step into the open source world :)
 
Upvote 0

Bel

Member
Licensed User
Hey @Erel Who are you?
Are Dennis MacAlistair Ritchie?
Or Who?
Oh Yes you are Erel,Mr Erel who revolution in programming world
Thank you Erel
Please answer my question below :
B4X:
For i = 1 to 1000000000000000000000000000000000000
   Print ("I love you Erel")
Next
What is output? :)
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
Beta #6 is now available for download.

It fixes several issues and it adds an optional runtime bound checks for arrays (enabled by default). Can be disabled with #CheckArrayBounds attribute.
The IDE will now auto complete event subs based on the variable name.

rSD library is included. It provides access to SD cards.

In the previous version there was a strange issue with the About dialog that caused the IDE to crash. Please try it with the new version.
 
Upvote 0

erfanmola

New Member
hey erel , should you add simulationg options to your genius app ?
that we could be able to simualte the result of what we see ?
 
Upvote 0

barx

Well-Known Member
Licensed User
Longtime User
About seems all good now, thanks
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
Beta #8 is now available. It includes several internal fixes and improvements.
It is required if you want to test the new WebSocket library: https://www.b4x.com/android/forum/threads/websocket-client-library.40221/#content

It also makes it easier to work with an external B4J Serial Connector program.

SS-2016-04-25_09.36.09.png


If B4J Serial Connector option is selected then the IDE will not use the internal logger. Instead it will send a message to the serial connector to open or close the serial port during compilation (only one program can access the serial port).
 
Upvote 0

daniedb

Active Member
Licensed User
Longtime User
How did I miss this post. Thanks EREL!!!! I've been using arduino for ages.. previously use pic's.
Will install now and test

Cheers
Danie
 
Upvote 0

Erel

B4X founder
Staff member
Licensed User
Longtime User
Beta #10 is now available for download.

Most of the changes are related to the handling of strings and bytes arrays: Strings and Bytes

There were some breaking changes in ByteConverter (rRandomAccessFile library):
- SubArray was changed to SubString
- ArrayCopy was changed to ArrayCopy2. There is a new ArrayCopy method that is simpler to use:
B4X:
'bc = ByteConverter
'messageToSend - Global array with enough space to hold the message array.
bc.ArrayCopy(message, messageToSend)
The length of the destination array will be the same as the length of the source array. Make sure that there is enough space allocated for the destination array.
 
Upvote 0
Status
Not open for further replies.
Top