Skip to content

Commit

Permalink
pw_system: Fix typo in freertos_target_hooks
Browse files Browse the repository at this point in the history
s/Workds/Words/g

Change-Id: I0cdec1ad1d3ba16aa0a089481a4f91ce70f17075
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/99880
Reviewed-by: Armando Montanez <[email protected]>
Commit-Queue: Armando Montanez <[email protected]>
  • Loading branch information
twcraig authored and CQ Bot Account committed Jun 27, 2022
1 parent 116fb0d commit 1050932
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pw_system/freertos_target_hooks.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ enum class ThreadPriority : UBaseType_t {
static_assert(static_cast<UBaseType_t>(ThreadPriority::kNumPriorities) <=
configMAX_PRIORITIES);

static constexpr size_t kLogThreadStackWorkds = 1024;
static thread::freertos::StaticContextWithStack<kLogThreadStackWorkds>
static constexpr size_t kLogThreadStackWords = 1024;
static thread::freertos::StaticContextWithStack<kLogThreadStackWords>
log_thread_context;
const thread::Options& LogThreadOptions() {
static constexpr auto options =
Expand All @@ -46,8 +46,8 @@ const thread::Options& LogThreadOptions() {
return options;
}

static constexpr size_t kRpcThreadStackWorkds = 512;
static thread::freertos::StaticContextWithStack<kRpcThreadStackWorkds>
static constexpr size_t kRpcThreadStackWords = 512;
static thread::freertos::StaticContextWithStack<kRpcThreadStackWords>
rpc_thread_context;
const thread::Options& RpcThreadOptions() {
static constexpr auto options =
Expand All @@ -58,8 +58,8 @@ const thread::Options& RpcThreadOptions() {
return options;
}

static constexpr size_t kWorkQueueThreadStackWorkds = 512;
static thread::freertos::StaticContextWithStack<kWorkQueueThreadStackWorkds>
static constexpr size_t kWorkQueueThreadStackWords = 512;
static thread::freertos::StaticContextWithStack<kWorkQueueThreadStackWords>
work_queue_thread_context;
const thread::Options& WorkQueueThreadOptions() {
static constexpr auto options =
Expand Down

0 comments on commit 1050932

Please sign in to comment.