Commit Graph

  • fe4511b35e Continued to work on the MQTT demo project. A few review comments added into the MQTT implementation. Richard Barry 2019-07-24 00:27:14 +0000
  • 53842d4cac Remove the simple UDP client/server tasks from the MQTT demo as the demo's network connection can be tested more easily just by pinging it. Tidy up the iot_config.h header files a little. Richard Barry 2019-07-23 19:23:12 +0000
  • 95f60318d5 Cosmetic changes in the MQTT demo Gaurav Aggarwal 2019-07-23 18:20:06 +0000
  • 17b18c8b7e Reduce warning level in Visual Studio project as it generates lots of warnings in the library files. Richard Barry 2019-07-23 17:30:18 +0000
  • d1dd8da12e Revert a couple of changes in Win32 demo that should not have been checked in. Richard Barry 2019-07-23 17:02:59 +0000
  • 05e7d9cc08 Remove dependency on secure sockets Gaurav Aggarwal 2019-07-23 06:55:54 +0000
  • 68fd276886 Remove IotMqtt_Assert( pTaskPool == IOT_SYSTEM_TASKPOOL ) from MQTT code Gaurav Aggarwal 2019-07-23 04:49:24 +0000
  • 8ea501ef11 Update projects to use the new directory name Gaurav Aggarwal 2019-07-23 04:16:32 +0000
  • 9dd72d4b44 Rename \FreeRTOS-Plus\Source\FreeRTOS-Plus-IoT-SDK to \FreeRTOS-Plus\Source\FreeRTOS-IoT-Libraries. Gaurav Aggarwal 2019-07-23 03:41:27 +0000
  • 7af8756c97 Update task pool so tasks and timer are allocated statically. Richard Barry 2019-07-23 01:46:59 +0000
  • 1840d38abf Another backup check-in during process of optimising task pool for FreeRTOS. This checkin is prior to making the task pool statically allocated. Richard Barry 2019-07-23 00:00:37 +0000
  • 63c87504a0 Backup checking on - part way through optimising task pool. Richard Barry 2019-07-22 21:46:13 +0000
  • 4c775574eb Fix DNS resolution failure for test.mosquitto.org Gaurav Aggarwal 2019-07-22 18:27:45 +0000
  • 06f9278de3 The MQTT example now works with the local MQTT broker. Gaurav Aggarwal 2019-07-21 23:26:54 +0000
  • a7ef9c3b61 Add first draft of mqtt example Gaurav Aggarwal 2019-07-21 22:14:13 +0000
  • 238a23e4d5 Add the files from the MQTT project that were not check in. Richard Barry 2019-07-19 01:39:42 +0000
  • 5dd6cf1295 Add missing files so base MQTT project builds. Richard Barry 2019-07-19 00:37:33 +0000
  • d708efe997 Update the task pool demo to show re-use of recyclable jobs Gaurav Aggarwal 2019-07-19 00:02:45 +0000
  • 2b295f9015 Added simple UDP demo into the mqtt project to enable the network connectivity to be tested in a simple way prior to performing any MQTT operations. Richard Barry 2019-07-17 20:50:15 +0000
  • d362efca8d Add MQTT project that builds on the task pool project - currently the library is building but not being used. Richard Barry 2019-07-17 19:44:13 +0000
  • 3c3b32b8e4 Rename the FreeRTOS_Plus_IoT_SDK directory to FreeRTOS_IoT_Libraries. Richard Barry 2019-07-16 18:21:42 +0000
  • 290c8cedfd Function rename in task pool demo. Richard Barry 2019-07-16 18:19:44 +0000
  • bb0e1f356d Remove any TCP/IP functionality from the task pool demo - the TCP/IP stack is still built as it will be used in later revisions. Richard Barry 2019-07-14 23:33:05 +0000
  • 2e18203bb7 Update TCP/IP tack to latest form Git. Richard Barry 2019-07-14 22:07:41 +0000
  • a6a0403fd6 Synch IoT libraries with latest versions. Richard Barry 2019-07-14 19:29:16 +0000
  • e4e86a464e New MSVC task pool demo now building both the task pool and TCP libraries. Richard Barry 2019-07-14 19:13:51 +0000
  • 3afd918ecd Rename the task pool version of FreeRTOS_Plus_TCP_Minimal.sln to task_pool_demo.sln. Richard Barry 2019-07-14 18:04:40 +0000
  • 232a94c3f0 Restart the task pool demo, this time using the minimal FreeRTOS+TCP project as a base. Richard Barry 2019-07-14 18:01:57 +0000
  • d8a3ad3c6f Minor modification to the WIn32 simple TCP/IP stack example only. Richard Barry 2019-07-14 16:06:31 +0000
  • 8bd1813446 Only partially implemented and may get reverted - updates to the Win32 port that uses a per-task event to prevent the task proceeding past its yield point if the SuspendThread() call used to stop the task does not take effect immediately. This is intended to fix issues reported by users, although we have been unable to replicate them ourselves. Richard Barry 2019-07-12 01:52:22 +0000
  • e60f71855a Remove IotTaskPool_CreateRecyclableSystemJob() and IotTaskPool_ScheduleSystemJob() again, which were intended to be alternative APIs that only access the system task pool, and instead update IotTaskPool_CreateRecyclableJob() and IotTaskPool_ScheduleJob() to allow the parameter used to pass in the task pool handle to be NULL if the system task pool is the only one available. Update the task pool demo app to include a lot more functionality. Richard Barry 2019-07-08 15:48:21 +0000
  • 4d6570b009 Exercise the new vPortGetHeapStats() function from the Win32 demo projects. Richard Barry 2019-07-05 20:21:59 +0000
  • fa404422b9 Add link to dual core blog post into STM32H745I demo. Doxygen corrections in list.h. Use #error to check FreeRTOS.h is included before message_buffer.h and stream_buffer.h. Richard Barry 2019-07-04 21:18:36 +0000
  • 246bb6e806 Add vPortGetHeapStats() function to query heap statistics. Richard Barry 2019-07-04 19:34:48 +0000
  • 7235743749 Only check once before re-setting ready priority Gaurav Aggarwal 2019-07-03 00:08:16 +0000
  • 004e2b637e Use ARMCM33_DSP_FP_TZ_config.txt which comes with the MDS installation Gaurav Aggarwal 2019-07-02 18:47:36 +0000
  • e75b609c74 In small FreeRTOS applications it is unlikely there will be any task pools other than the system task pool. IotTaskPool_CreateRecyclableSystemJob() is therefore introduced to complement IotTaskPool_CreateRecyclableJob() that does not require the handle of the target task pool to be specified as a parameter. Likewise IotTaskPool_ScheduleSystemJob() is introduced to complement IotTaskPool_ScheduleJob() for the same reason. IotTaskPool_CreateSystemTaskPool() calls synchronisation primitives, so cannot be called before the scheduler starts. Add a configASSERT() to ensure the scheduler is running when it executes. IotTaskPool_CreateSystemTaskPool() can conceivably be called from multiple different libraries that depend on the thread pool. In this version _IotSystemTaskPool.running can be used to check the system task pool has not already been created. If the task pool has been created simply return from IotTaskPool_CreateSystemTaskPool() instead of re-creating it (which would leak memory and leave orphaned tasks). Call taskENTER_CRITICAL() and taskEXIT_CRITICAL() directly in place of mapping them to TASKPOOL_ENTER_CRITICAL() and TASKPOOL_EXIT_CRITICAL() in the same file. Rename _timerThread() _timerCallback(), as it is a callback function and not a thread. Remove the unused flags parameter from _scheduleInternal(). Richard Barry 2019-07-01 17:05:20 +0000
  • 76cc2a00c6 Add the first and most basic task pool example. Richard Barry 2019-06-28 23:20:52 +0000
  • 87eb37342f Create a project that builds a subset of the dependencies of the IoT SDK that have been brought into SVN thus far. The application does nothing other than build at this time. Richard Barry 2019-06-19 18:42:58 +0000
  • 0b0a02b76a Bring in a minimum subset of the IoT SDK - at this time just a subset of the library dependencies rather than the libraries themselves. Richard Barry 2019-06-19 18:41:21 +0000
  • fb3eaeac40 Added additional xMessageBufferSpacesAvailable() (plural) to existing xMessageBufferSpaceAvailable() (singular) macro as the documentation muddled both. Added #define portPOINTER_SIZE_TYPE uint64_t to the 64-bit RISC-V port layer. Richard Barry 2019-05-13 03:14:05 +0000
  • b51529a284 Update version number ready for next release. Richard Barry 2019-05-11 01:47:37 +0000
  • 9e10b08a3a Delete the Release configuration from the NXP project. Gaurav Aggarwal 2019-05-11 00:53:34 +0000
  • db5d265c07 Removing obsolete code and files only. Richard Barry 2019-05-10 22:19:18 +0000
  • 53cb12e389 Add M7/M4 AMP demo. Richard Barry 2019-05-10 18:25:10 +0000
  • 0b1a025789 Add NXP libs needed to build the project Gaurav Aggarwal 2019-05-09 22:27:44 +0000
  • aa9c8d2697 Delete the not needed file missed in last commit Gaurav Aggarwal 2019-05-09 22:09:12 +0000
  • b9e379951a Do not strip required symbols when LTO is on Gaurav Aggarwal 2019-05-09 22:04:29 +0000
  • b6e5f96f0e Ensure that fault handlers are declared naked. Gaurav Aggarwal 2019-05-05 02:26:42 +0000
  • 2279a86566 Add ARMv8M demo project for NXP LPC55S69. Gaurav Aggarwal 2019-05-05 02:15:55 +0000
  • ae448fc952 Add Cortex M23 GCC and IAR ports. Add demo projects for Nuvoton NuMaker-PFM-2351. Gaurav Aggarwal 2019-05-02 21:08:28 +0000
  • 079d081346 Basic 64-bit RISC-V port now functional. RISC-V port layer automatically switches between 32-bit and 64-bit. Richard Barry 2019-04-29 00:57:14 +0000
  • 27ca5c8341 Added portMEMORY_BARRIER() implemented as __asm volatile( "" ::: "memory" ) into ARM Cortex-M33 ports to assist with link time optimisation. Richard Barry 2019-04-25 19:49:50 +0000
  • 84377442fc Added portMEMORY_BARRIER() implemented as __asm volatile( "" ::: "memory" ) into ARM GCC ports to assist with link time optimisation. Richard Barry 2019-04-21 20:15:34 +0000
  • 606845492b Fix potential memory leak in the Win32 FreeRTOS+TCP network interface initialisation sequence. Introduce portMEMORY_BARRIER() macro to assist with memory access ordering when suspending the scheduler if link time optimization is used. Richard Barry 2019-04-17 17:16:04 +0000
  • dd9a9710c6 Export port architecture name for COrtex-M33. This can be used by debuggers to find the port in-use to be able to correctly decode the context stored on the stack. Gaurav Aggarwal 2019-03-28 00:00:46 +0000
  • ba39a958b5 Fix spelling of priority in comments. Gaurav Aggarwal 2019-03-18 23:28:03 +0000
  • 12fb75be37 Fix warning portHAS_STACK_OVERFLOW_CHECKING not defined Gaurav Aggarwal 2019-03-13 21:10:44 +0000
  • 2265d70499 Correcting spelling mistakes in comments only. Richard Barry 2019-03-08 17:30:49 +0000
  • 06596c3192 Prepare the RISC-V port layer for addition of 64-bit port. Richard Barry 2019-03-08 17:03:43 +0000
  • 50e67a89f1 Update version number in +TCP code. Richard Barry 2019-02-21 18:08:36 +0000
  • 5fe8465a35 Change type of usStackDepth to configSTACK_DEPTH_TYPE. Gaurav Aggarwal 2019-02-21 03:25:30 +0000
  • 5623c69748 Fix Build and Links failure in MPU projects. Minor cosmetic changes in some V8M files. Gaurav Aggarwal 2019-02-20 20:27:07 +0000
  • 8b6ab5f197 Add instructions on building the Cortex-M33 secure and non secure projects into the comments of that project and into a readme.txt file. Enable configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES setting to be used in statically allocated systems. Richard Barry 2019-02-20 17:55:59 +0000
  • ceeff14524 Set default value of configRUN_FREERTOS_SECURE_ONLY to 0. Gaurav Aggarwal 2019-02-20 00:40:46 +0000
  • 5849459c65 Add support for running FreeRTOS on Secure Side only in Cortex M33 port. Also, change spaces to tabs. Gaurav Aggarwal 2019-02-20 00:25:45 +0000
  • c3c9c12ce2 Update the common demo death.c to use the updated macro name to give it a secure context. Richard Barry 2019-02-19 02:57:44 +0000
  • ce576f3683 First Official Release of ARMV8M Support. This release removes Pre-Release from all the ARMv8M files licensees. Gaurav Aggarwal 2019-02-19 02:30:32 +0000
  • 58ba10eee8 Update version number in readiness for V10.2.0 release. Richard Barry 2019-02-17 22:36:16 +0000
  • 55ad3861c5 Sync the Renesas port to AFR Git Repo Gaurav Aggarwal 2019-02-17 01:27:16 +0000
  • 0de2a2758a Fix definition of tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE Gaurav Aggarwal 2019-02-17 01:24:58 +0000
  • 2c88fb7fa1 Fix build failure when dynamic allocation is not enabled. Gaurav Aggarwal 2019-02-16 20:21:47 +0000
  • 6844bef74f Replace the pdf RISC-V documentation with links to the documentation web pages. Richard Barry 2019-02-16 01:15:33 +0000
  • b2b1b09ea5 Fix bug in core_cm3.c atomic macros. Rename the portable/GCC/RISC-V-RV32 directory to just RISC-V as also adding support for 64-bit cores. Richard Barry 2019-02-16 01:08:38 +0000
  • 3153131fa7 Add Dornerworks attribution to makefiles that build the Freedom Studio RISC-V project. Richard Barry 2019-02-12 02:43:28 +0000
  • 7e08fd6d07 Add makefiles that build the FreedomStudio project (provided by Dornerworks - thanks). Richard Barry 2019-02-11 19:44:13 +0000
  • fb73829148 Ensure eTaskGetState() is brought in automatically if INCLUDE_xTaskAbortDelay is set to 1, as it is a dependency of eTaskGetState(). Added the portTASK_FUNCTION_PROTO macros around the timer task, as the macros are already used by the idle task. Add a PDF of the RISC-V documentation into the repo as the web page is not yet live. Richard Barry 2019-02-08 01:18:08 +0000
  • df5952f655 Add xTaskGetIdleRunTimeCounter() API function to return the run time stats counter for the idle task - useful for POSIX time implementations. Richard Barry 2019-01-21 23:39:48 +0000
  • 817783d75c Copyright updates from Cadence. Gaurav Aggarwal 2019-01-16 19:01:25 +0000
  • a4941ac5db Update main.c() for the WIN32-MingW project so the trace recorder is initialized even when the simple blinky demo is used - otherwise the trace recorder causes an exception as it is used without first being initialized. Richard Barry 2019-01-07 19:40:13 +0000
  • 80df5cd517 Update the pin mux setup on the Vega board demo to enable the LED. Richard Barry 2018-12-31 20:14:34 +0000
  • 11d9c440b8 Move the 'generic' version of freertos_risc_v_chip_specific_extensions.h back to a sub-directory as having it in the RISC-V port's base directory was causing SoftConsole to pick up the wrong version (for an unknown reason). Add a project for the Vega board's RI5CY core. Richard Barry 2018-12-31 18:19:52 +0000
  • e2af102c80 Re-org of RISC-V file structure and naming step 2. Richard Barry 2018-12-30 23:53:47 +0000
  • 818eeccc0c Re-org of RISC-V file structure and naming step 1. Richard Barry 2018-12-30 23:20:26 +0000
  • 3474e750fa Create folder to hold RISC-V chip specific extensions. Richard Barry 2018-12-30 23:15:37 +0000
  • db750d0c82 Update RSIC-V port layer after testing saving and receiving of chip specific registers. Richard Barry 2018-12-30 23:11:40 +0000
  • 60b133b2c6 Move the RISC-V pxPortInitialiseStack() implementation to the assembly port file from the C port file so it can have access to the number of chip specific registers it needs to save space for on the stack. Richard Barry 2018-12-30 20:00:43 +0000
  • 911a1de273 Correct accidental deletion in GenQTest.c. Richard Barry 2018-12-28 03:38:27 +0000
  • d369110167 Allow the size of the stack used by many of the standard demo/test tasks to be overridden by FreeRTOSConfig.h settings. Update the Freedom Studio RISC-V project so the 'full' build configuration is now functional. Richard Barry 2018-12-28 00:44:18 +0000
  • 178fe4f143 Update the Freedom Studio RISC-V project so the gdbinit options are now specified on the command line. Richard Barry 2018-12-27 04:57:49 +0000
  • e5daf23d75 Update Freedom Studio RISC-V demo for the latest GCC RISC-V port - not yet tested. Richard Barry 2018-12-27 04:34:08 +0000
  • 80f6f3e59b Retarget Softconsole RISC-V demo from IGLOO2 to Renode as it can have more RAM and therefore have more test tasks running. Richard Barry 2018-12-24 17:48:10 +0000
  • ce36928ea8 Rename directories in the RISC-V port. Richard Barry 2018-12-24 17:37:02 +0000
  • 2181c0375e Backup Microsemi Renode project before adding a build configuration for the target hardware. Richard Barry 2018-12-19 02:56:13 +0000
  • 8d213b42f2 Add vTimerSetReloadMode() calls to the code coverage tests. Richard Barry 2018-12-17 23:19:23 +0000
  • 6edabbe7ea Update the the MPU simulator project to exercise the timer API. Richard Barry 2018-12-17 22:06:58 +0000
  • 148f588f56 Remove "FromISR' functions from the list of functions that switch to a privileged mode as IRQs are privileged already. Add the vTimerSetReloadMode() API function. Richard Barry 2018-12-17 22:04:18 +0000
  • 8285ca6b5f Update RISC-V_IGLOO2_Creative_SoftConsole demo to make use of new RISC-V porting layer structure and exercise some external interrupts - all tests currently passing in Renode. Richard Barry 2018-12-17 00:01:36 +0000
  • 101806906d Rework RISC-V portASM.S to make it easier to add in chip specific RISC-V extensions and accommodate chips that don't include the CLINT. Richard Barry 2018-12-16 23:59:49 +0000
  • 7cc42b2ab6 Save changes to the RISC-V port layer before making changes necessary to support pulpino too: + Switch positions of the asm functions used to start the kernel and handle traps to enable one to reference to the other. + Handle external interrupts (working with Renode emulator). + The _sp linker variable is now called __freertos_irq_stack_top. Richard Barry 2018-12-16 20:21:29 +0000