pub unsafe extern "C" fn xTaskCreateStaticPinnedToCore(
    pxTaskCode: TaskFunction_t,
    pcName: *const c_char,
    ulStackDepth: u32,
    pvParameters: *mut c_void,
    uxPriority: UBaseType_t,
    pxStackBuffer: *mut StackType_t,
    pxTaskBuffer: *mut StaticTask_t,
    xCoreID: BaseType_t
) -> TaskHandle_t