STM32F4 Discovery with libopencm3 trouble

When I’m trying to set controller to 168MHz freq by rcc_clock_setup_hse_3v3(&rcc_hse_8mhz_3v3[RCC_CLOCK_3V3_168MHZ]); I’m getting src/main.c:110:28: error: 'rcc_hse_8mhz_3v3' undeclared (first use in this function) rcc_clock_setup_hse_3v3(&rcc_hse_8mhz_3v3[RCC_CLOCK_3V3_168MHZ]); ^ src/main.c:110:28: note: each undeclared identifier is reported only once for each function it appears in src/main.c:110:45: error: 'RCC_CLOCK_3V3_168MHZ' undeclared (first use in this function)
I have #include <libopencm3/stm32/rcc.h> like in libopencm3 official example but still have no idea how can I make him start. Thanks in advance

Please file an issue here Issues · platformio/platform-ststm32 · GitHub