Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/rp2_common/pico_multicore/include/pico/multicore.h
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ static inline void multicore_doorbell_clear_current_core(uint doorbell_num) {
sio_hw->doorbell_in_clr = 1u << doorbell_num;
}

/*! \brief Determine if the given doorbell is active on the other core
/*! \brief Determine if the given doorbell is active on the this core
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/*! \brief Determine if the given doorbell is active on the this core
/*! \brief Determine if the given doorbell is active on this core

😉

* \ingroup multicore_doorbell
* \param doorbell_num the doorbell number
*/
Expand All @@ -386,7 +386,7 @@ static inline bool multicore_doorbell_is_set_current_core(uint doorbell_num) {
return sio_hw->doorbell_in_set & (1u << doorbell_num);
}

/*! \brief Determine if the given doorbell is active on the this core
/*! \brief Determine if the given doorbell is active on the other core
* \ingroup multicore_doorbell
* \param doorbell_num the doorbell number
*/
Expand Down