Style: Make freertos.org = FreeRTOS.org and add https (#134)

* Style: make freertos.org = FreeRTOS.org also add https

* Style: Fix freertos into FreeRTOS

* Style: Fix freertos into FreeRTOS

Co-authored-by: Alfred Gedeon <gedeonag@amazon.com>
diff --git a/include/event_groups.h b/include/event_groups.h
index a815286..13d2506 100644
--- a/include/event_groups.h
+++ b/include/event_groups.h
@@ -104,7 +104,7 @@
  * block of memory, in which the event group's structure is stored.  If an event
  * groups is created using xEventGropuCreate() then the required memory is
  * automatically dynamically allocated inside the xEventGroupCreate() function.
- * (see http://www.freertos.org/a00111.html).  If an event group is created
+ * (see https://www.FreeRTOS.org/a00111.html).  If an event group is created
  * using xEventGropuCreateStatic() then the application writer must instead
  * provide the memory that will get used by the event group.
  * xEventGroupCreateStatic() therefore allows an event group to be created
@@ -120,7 +120,7 @@
  *
  * @return If the event group was created then a handle to the event group is
  * returned.  If there was insufficient FreeRTOS heap available to create the
- * event group then NULL is returned.  See http://www.freertos.org/a00111.html
+ * event group then NULL is returned.  See https://www.FreeRTOS.org/a00111.html
  *
  * Example usage:
  * <pre>
@@ -160,7 +160,7 @@
  * block of memory, in which the event group's structure is stored.  If an event
  * groups is created using xEventGropuCreate() then the required memory is
  * automatically dynamically allocated inside the xEventGroupCreate() function.
- * (see http://www.freertos.org/a00111.html).  If an event group is created
+ * (see https://www.FreeRTOS.org/a00111.html).  If an event group is created
  * using xEventGropuCreateStatic() then the application writer must instead
  * provide the memory that will get used by the event group.
  * xEventGroupCreateStatic() therefore allows an event group to be created
diff --git a/include/queue.h b/include/queue.h
index a6fde28..1355ab7 100644
--- a/include/queue.h
+++ b/include/queue.h
@@ -92,7 +92,7 @@
  * second block is used to hold items placed into the queue.  If a queue is
  * created using xQueueCreate() then both blocks of memory are automatically
  * dynamically allocated inside the xQueueCreate() function.  (see
- * http://www.freertos.org/a00111.html).  If a queue is created using
+ * https://www.FreeRTOS.org/a00111.html).  If a queue is created using
  * xQueueCreateStatic() then the application writer must provide the memory that
  * will get used by the queue.  xQueueCreateStatic() therefore allows a queue to
  * be created without using any dynamic memory allocation.
@@ -166,7 +166,7 @@
  * second block is used to hold items placed into the queue.  If a queue is
  * created using xQueueCreate() then both blocks of memory are automatically
  * dynamically allocated inside the xQueueCreate() function.  (see
- * http://www.freertos.org/a00111.html).  If a queue is created using
+ * https://www.FreeRTOS.org/a00111.html).  If a queue is created using
  * xQueueCreateStatic() then the application writer must provide the memory that
  * will get used by the queue.  xQueueCreateStatic() therefore allows a queue to
  * be created without using any dynamic memory allocation.
diff --git a/include/semphr.h b/include/semphr.h
index 0d7f24f..8b08165 100644
--- a/include/semphr.h
+++ b/include/semphr.h
@@ -48,7 +48,7 @@
  *

  * In many usage scenarios it is faster and more memory efficient to use a

  * direct to task notification in place of a binary semaphore!

- * http://www.freertos.org/RTOS-task-notifications.html

+ * https://www.FreeRTOS.org/RTOS-task-notifications.html

  *

  * This old vSemaphoreCreateBinary() macro is now deprecated in favour of the

  * xSemaphoreCreateBinary() function.  Note that binary semaphores created using

@@ -113,13 +113,13 @@
  *

  * In many usage scenarios it is faster and more memory efficient to use a

  * direct to task notification in place of a binary semaphore!

- * http://www.freertos.org/RTOS-task-notifications.html

+ * https://www.FreeRTOS.org/RTOS-task-notifications.html

  *

  * Internally, within the FreeRTOS implementation, binary semaphores use a block

  * of memory, in which the semaphore structure is stored.  If a binary semaphore

  * is created using xSemaphoreCreateBinary() then the required memory is

  * automatically dynamically allocated inside the xSemaphoreCreateBinary()

- * function.  (see http://www.freertos.org/a00111.html).  If a binary semaphore

+ * function.  (see https://www.FreeRTOS.org/a00111.html).  If a binary semaphore

  * is created using xSemaphoreCreateBinaryStatic() then the application writer

  * must provide the memory.  xSemaphoreCreateBinaryStatic() therefore allows a

  * binary semaphore to be created without using any dynamic memory allocation.

@@ -176,13 +176,13 @@
  *

  * NOTE: In many usage scenarios it is faster and more memory efficient to use a

  * direct to task notification in place of a binary semaphore!

- * http://www.freertos.org/RTOS-task-notifications.html

+ * https://www.FreeRTOS.org/RTOS-task-notifications.html

  *

  * Internally, within the FreeRTOS implementation, binary semaphores use a block

  * of memory, in which the semaphore structure is stored.  If a binary semaphore

  * is created using xSemaphoreCreateBinary() then the required memory is

  * automatically dynamically allocated inside the xSemaphoreCreateBinary()

- * function.  (see http://www.freertos.org/a00111.html).  If a binary semaphore

+ * function.  (see https://www.FreeRTOS.org/a00111.html).  If a binary semaphore

  * is created using xSemaphoreCreateBinaryStatic() then the application writer

  * must provide the memory.  xSemaphoreCreateBinaryStatic() therefore allows a

  * binary semaphore to be created without using any dynamic memory allocation.

@@ -685,7 +685,7 @@
  * of memory, in which the mutex structure is stored.  If a mutex is created

  * using xSemaphoreCreateMutex() then the required memory is automatically

  * dynamically allocated inside the xSemaphoreCreateMutex() function.  (see

- * http://www.freertos.org/a00111.html).  If a mutex is created using

+ * https://www.FreeRTOS.org/a00111.html).  If a mutex is created using

  * xSemaphoreCreateMutexStatic() then the application writer must provided the

  * memory.  xSemaphoreCreateMutexStatic() therefore allows a mutex to be created

  * without using any dynamic memory allocation.

@@ -746,7 +746,7 @@
  * of memory, in which the mutex structure is stored.  If a mutex is created

  * using xSemaphoreCreateMutex() then the required memory is automatically

  * dynamically allocated inside the xSemaphoreCreateMutex() function.  (see

- * http://www.freertos.org/a00111.html).  If a mutex is created using

+ * https://www.FreeRTOS.org/a00111.html).  If a mutex is created using

  * xSemaphoreCreateMutexStatic() then the application writer must provided the

  * memory.  xSemaphoreCreateMutexStatic() therefore allows a mutex to be created

  * without using any dynamic memory allocation.

@@ -811,7 +811,7 @@
  * created using xSemaphoreCreateRecursiveMutex() then the required memory is

  * automatically dynamically allocated inside the

  * xSemaphoreCreateRecursiveMutex() function.  (see

- * http://www.freertos.org/a00111.html).  If a recursive mutex is created using

+ * https://www.FreeRTOS.org/a00111.html).  If a recursive mutex is created using

  * xSemaphoreCreateRecursiveMutexStatic() then the application writer must

  * provide the memory that will get used by the mutex.

  * xSemaphoreCreateRecursiveMutexStatic() therefore allows a recursive mutex to

@@ -880,7 +880,7 @@
  * created using xSemaphoreCreateRecursiveMutex() then the required memory is

  * automatically dynamically allocated inside the

  * xSemaphoreCreateRecursiveMutex() function.  (see

- * http://www.freertos.org/a00111.html).  If a recursive mutex is created using

+ * https://www.FreeRTOS.org/a00111.html).  If a recursive mutex is created using

  * xSemaphoreCreateRecursiveMutexStatic() then the application writer must

  * provide the memory that will get used by the mutex.

  * xSemaphoreCreateRecursiveMutexStatic() therefore allows a recursive mutex to

@@ -952,14 +952,14 @@
  *

  * In many usage scenarios it is faster and more memory efficient to use a

  * direct to task notification in place of a counting semaphore!

- * http://www.freertos.org/RTOS-task-notifications.html

+ * https://www.FreeRTOS.org/RTOS-task-notifications.html

  *

  * Internally, within the FreeRTOS implementation, counting semaphores use a

  * block of memory, in which the counting semaphore structure is stored.  If a

  * counting semaphore is created using xSemaphoreCreateCounting() then the

  * required memory is automatically dynamically allocated inside the

  * xSemaphoreCreateCounting() function.  (see

- * http://www.freertos.org/a00111.html).  If a counting semaphore is created

+ * https://www.FreeRTOS.org/a00111.html).  If a counting semaphore is created

  * using xSemaphoreCreateCountingStatic() then the application writer can

  * instead optionally provide the memory that will get used by the counting

  * semaphore.  xSemaphoreCreateCountingStatic() therefore allows a counting

@@ -1034,14 +1034,14 @@
  *

  * In many usage scenarios it is faster and more memory efficient to use a

  * direct to task notification in place of a counting semaphore!

- * http://www.freertos.org/RTOS-task-notifications.html

+ * https://www.FreeRTOS.org/RTOS-task-notifications.html

  *

  * Internally, within the FreeRTOS implementation, counting semaphores use a

  * block of memory, in which the counting semaphore structure is stored.  If a

  * counting semaphore is created using xSemaphoreCreateCounting() then the

  * required memory is automatically dynamically allocated inside the

  * xSemaphoreCreateCounting() function.  (see

- * http://www.freertos.org/a00111.html).  If a counting semaphore is created

+ * https://www.FreeRTOS.org/a00111.html).  If a counting semaphore is created

  * using xSemaphoreCreateCountingStatic() then the application writer must

  * provide the memory.  xSemaphoreCreateCountingStatic() therefore allows a

  * counting semaphore to be created without using any dynamic memory allocation.

diff --git a/include/task.h b/include/task.h
index cee1c62..f51dbd4 100644
--- a/include/task.h
+++ b/include/task.h
@@ -150,7 +150,7 @@
     eTaskState eCurrentState;                        /* The state in which the task existed when the structure was populated. */
     UBaseType_t uxCurrentPriority;                   /* The priority at which the task was running (may be inherited) when the structure was populated. */
     UBaseType_t uxBasePriority;                      /* The priority to which the task will return if the task's current priority has been inherited to avoid unbounded priority inversion when obtaining a mutex.  Only valid if configUSE_MUTEXES is defined as 1 in FreeRTOSConfig.h. */
-    uint32_t ulRunTimeCounter;                       /* The total run time allocated to the task so far, as defined by the run time stats clock.  See http://www.freertos.org/rtos-run-time-stats.html.  Only valid when configGENERATE_RUN_TIME_STATS is defined as 1 in FreeRTOSConfig.h. */
+    uint32_t ulRunTimeCounter;                       /* The total run time allocated to the task so far, as defined by the run time stats clock.  See https://www.FreeRTOS.org/rtos-run-time-stats.html.  Only valid when configGENERATE_RUN_TIME_STATS is defined as 1 in FreeRTOSConfig.h. */
     StackType_t * pxStackBase;                       /* Points to the lowest address of the task's stack area. */
     configSTACK_DEPTH_TYPE usStackHighWaterMark;     /* The minimum amount of stack space that has remained for the task since the task was created.  The closer this value is to zero the closer the task has come to overflowing its stack. */
 } TaskStatus_t;
@@ -262,7 +262,7 @@
  * second block is used by the task as its stack.  If a task is created using
  * xTaskCreate() then both blocks of memory are automatically dynamically
  * allocated inside the xTaskCreate() function.  (see
- * http://www.freertos.org/a00111.html).  If a task is created using
+ * https://www.FreeRTOS.org/a00111.html).  If a task is created using
  * xTaskCreateStatic() then the application writer must provide the required
  * memory.  xTaskCreateStatic() therefore allows a task to be created without
  * using any dynamic memory allocation.
@@ -364,7 +364,7 @@
  * second block is used by the task as its stack.  If a task is created using
  * xTaskCreate() then both blocks of memory are automatically dynamically
  * allocated inside the xTaskCreate() function.  (see
- * http://www.freertos.org/a00111.html).  If a task is created using
+ * https://www.FreeRTOS.org/a00111.html).  If a task is created using
  * xTaskCreateStatic() then the application writer must provide the required
  * memory.  xTaskCreateStatic() therefore allows a task to be created without
  * using any dynamic memory allocation.
@@ -1592,7 +1592,7 @@
       * 
       * The application stack overflow hook is called when a stack overflow is detected for a task.
       * 
-      * Details on stack overflow detection can be found here: https://www.freertos.org/Stacks-and-stack-overflow-checking.html
+      * Details on stack overflow detection can be found here: https://www.FreeRTOS.org/Stacks-and-stack-overflow-checking.html
       *  
       * @param xTask the task that just exceeded its stack boundaries.
       * @param pcTaskName A character string containing the name of the offending task.
@@ -1619,7 +1619,7 @@
      * <pre>void vApplicationGetIdleTaskMemory( StaticTask_t ** ppxIdleTaskTCBBuffer, StackType_t ** ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize ) </pre>
      * 
      * This function is used to provide a statically allocated block of memory to FreeRTOS to hold the Idle Task TCB.  This function is required when 
-     * configSUPPORT_STATIC_ALLOCATION is set.  For more information see this URI: https://www.freertos.org/a00110.html#configSUPPORT_STATIC_ALLOCATION
+     * configSUPPORT_STATIC_ALLOCATION is set.  For more information see this URI: https://www.FreeRTOS.org/a00110.html#configSUPPORT_STATIC_ALLOCATION
      * 
      * @param ppxIdleTaskTCBBuffer A handle to a statically allocated TCB buffer
      * @param ppxIdleTaskStackBuffer A handle to a statically allocated Stack buffer for thie idle task
@@ -1681,7 +1681,7 @@
  * @param pulTotalRunTime If configGENERATE_RUN_TIME_STATS is set to 1 in
  * FreeRTOSConfig.h then *pulTotalRunTime is set by uxTaskGetSystemState() to the
  * total run time (as defined by the run time stats clock, see
- * http://www.freertos.org/rtos-run-time-stats.html) since the target booted.
+ * https://www.FreeRTOS.org/rtos-run-time-stats.html) since the target booted.
  * pulTotalRunTime can be set to NULL to omit the total run time information.
  *
  * @return The number of TaskStatus_t structures that were populated by
@@ -2729,7 +2729,7 @@
  * returned and pxTicksToWait is updated to reflect the number of remaining
  * ticks.
  *
- * @see https://www.freertos.org/xTaskCheckForTimeOut.html
+ * @see https://www.FreeRTOS.org/xTaskCheckForTimeOut.html
  *
  * Example Usage:
  * <pre>
diff --git a/include/timers.h b/include/timers.h
index 8d1c1e9..9c5a35c 100644
--- a/include/timers.h
+++ b/include/timers.h
@@ -103,7 +103,7 @@
  * of memory, in which the timer data structure is stored.  If a software timer
  * is created using xTimerCreate() then the required memory is automatically
  * dynamically allocated inside the xTimerCreate() function.  (see
- * http://www.freertos.org/a00111.html).  If a software timer is created using
+ * https://www.FreeRTOS.org/a00111.html).  If a software timer is created using
  * xTimerCreateStatic() then the application writer must provide the memory that
  * will get used by the software timer.  xTimerCreateStatic() therefore allows a
  * software timer to be created without using any dynamic memory allocation.
@@ -249,7 +249,7 @@
  * of memory, in which the timer data structure is stored.  If a software timer
  * is created using xTimerCreate() then the required memory is automatically
  * dynamically allocated inside the xTimerCreate() function.  (see
- * http://www.freertos.org/a00111.html).  If a software timer is created using
+ * https://www.FreeRTOS.org/a00111.html).  If a software timer is created using
  * xTimerCreateStatic() then the application writer must provide the memory that
  * will get used by the software timer.  xTimerCreateStatic() therefore allows a
  * software timer to be created without using any dynamic memory allocation.
@@ -1331,7 +1331,7 @@
      * <pre>void vApplicationGetTimerTaskMemory( StaticTask_t ** ppxTimerTaskTCBBuffer, StackType_t ** ppxTimerTaskStackBuffer, uint32_t *pulTimerTaskStackSize ) </pre>
      * 
      * This function is used to provide a statically allocated block of memory to FreeRTOS to hold the Timer Task TCB.  This function is required when 
-     * configSUPPORT_STATIC_ALLOCATION is set.  For more information see this URI: https://www.freertos.org/a00110.html#configSUPPORT_STATIC_ALLOCATION
+     * configSUPPORT_STATIC_ALLOCATION is set.  For more information see this URI: https://www.FreeRTOS.org/a00110.html#configSUPPORT_STATIC_ALLOCATION
      * 
      * @param ppxTimerTaskTCBBuffer   A handle to a statically allocated TCB buffer
      * @param ppxTimerTaskStackBuffer A handle to a statically allocated Stack buffer for thie idle task