Skip to content
Merged
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
3 changes: 1 addition & 2 deletions sw/runtime/src/cluster_interrupts.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
* @param cluster_idx Index of the cluster to which the interrupt is sent
*/
inline void snrt_int_cluster_set(uint32_t mask, uint32_t cluster_idx) {
snrt_cluster(cluster_idx)->peripheral_reg.cl_clint_set.f.cl_clint_set =
mask;
snrt_cluster(cluster_idx)->peripheral_reg.cl_clint_set.w = (uint64_t)mask;
}

/**
Expand Down
Loading