Hi.
I am using nrf52832, SDK15.0.0, and S132 SD.

int main(void){
sd_power_dcdc_mode_set(NRF_POWER_DCDC_ENABLE);
nrf_gpio_cfg_output(HX711_SCK_PIN);
nrf_gpio_pin_write(HX711_SCK_PIN,true); //HX711 power down
nrf_delay_us(100); // 60us by datasheet
NRF_POWER->SYSTEMOFF = 1;
}
