Skip to content

Commit

Permalink
Update Readme and version for new FPC and Lazarus release
Browse files Browse the repository at this point in the history
(cherry picked from commit 5f0e5bc)
  • Loading branch information
ultibohub committed Apr 16, 2022
1 parent fdc452b commit a3dad38
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 12 deletions.
52 changes: 46 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,54 @@

This is the source for the Ultibo core project, a full featured embedded (no OS) development environment for Raspberry Pi written in Free Pascal.

For all information on developing with Ultibo, building the source and getting started please see the Ultibo.org website at
Ultibo core is much more than just another OS example it is a complete platform for creating modern full featured embedded applications which run without any operating system and provides a large number of stable, ready to use features including:

https://ultibo.org
* Support for all models of Raspberry Pi (A/B/A+/B+/2B/3B/3B+/4B/400/Zero/ZeroW/Zero2W) plus QEMU ARM emulation

Detailed documentation can be found in the wiki at
* Pre-emptive threading

https://ultibo.org/wiki
* Full range of locking and synchronization primitives

Questions and other discussion should be posted in the forum at
* Multicore support on Raspberry Pi 2, 3 and 4 with all cores sharing workload

https://ultibo.org/forum/index.php
* Thread priority, affinity and migration

* Complete IPv4 stack including TCP, UDP, ICMP and raw sockets as well as DNS and DHCP protocols

* USB support with drivers for Hub, Keyboard, Mouse, Storage and Network

* MMC/SD device support including eMMC devices on Raspberry Pi Compute Modules

* Support for GPIO, I2C, SPI, PWM, UART and DMA devices

* Full support for FAT12/16/32, NTFS and CDFS filesystems

* Interrupt and fast interrupt handling

* Hardware exception handling

* Complete RTL with strings, code pages, Unicode, classes, objects and exceptions

* Full Winsock 1.1 and Winsock 2 implementation

* Standard C library support including POSIX threads

* Prebuilt libraries for Freetype2, SQLite, Zlib, Libpng and more included

* Support for many common FPC packages

* Hardware accelerated OpenGL ES and OpenVG graphics and support for the official Pi camera

* Many included extras like HTTP, SMTP, NTP, SysLog, Telnet and Shell

Note that the Raspberry Pi Pico is not supported by Ultibo core as it is based on a microcontroller instead of a microprocessor and is not able to support the features required by Ultibo core.

### More information:

For all information on developing with Ultibo, building the source and getting started please see the [Ultibo.org website](https://ultibo.org)

An installer download for Windows and a Linux installer script are available from the [downloads page](https://ultibo.org/download/)

Detailed documentation can be found in the [Ultibo wiki](https://ultibo.org/wiki)

Questions and other discussion should be posted in the [Ultibo forum](https://ultibo.org/forum/index.php)
2 changes: 1 addition & 1 deletion source/__version.id
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.341
2.5.001
8 changes: 4 additions & 4 deletions source/rtl/ultibo/core/globalconst.pas
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ interface
{Global constants}
const
{Version constants}
ULTIBO_RELEASE_DATE = '21 March 2022';
ULTIBO_RELEASE_DATE = '15 April 2022';
ULTIBO_RELEASE_NAME = 'Beetroot';
ULTIBO_RELEASE_VERSION = '2.1.341';
ULTIBO_RELEASE_VERSION = '2.5.001';
ULTIBO_RELEASE_VERSION_MAJOR = 2;
ULTIBO_RELEASE_VERSION_MINOR = 1;
ULTIBO_RELEASE_VERSION_REVISION = 341;
ULTIBO_RELEASE_VERSION_MINOR = 5;
ULTIBO_RELEASE_VERSION_REVISION = 001;

FPC_COMPILER_VERSION = {$I %FPCVERSION%}; {The version of FPC used to compile the RTL}

Expand Down
2 changes: 1 addition & 1 deletion source/rtl/ultibo/drivers/rt2x00lib.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2138,7 +2138,7 @@ function RT2X00GetRegister32(Reg,Mask,Shift:LongWord):LongWord; inline;

{==============================================================================}

procedure RT2X00SetRegister32(var Reg:LongWord;Mask,Shift,Value:LongWord); //inline; //To Do //TestingFPC
procedure RT2X00SetRegister32(var Reg:LongWord;Mask,Shift,Value:LongWord); {inline;} {Don't inline, can cause a compiler fault}
{Shift is the number of bits to shift the value left (SHL)}
begin
{}
Expand Down

0 comments on commit a3dad38

Please sign in to comment.