Skip to content

Commit

Permalink
f_image
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 authored Feb 14, 2024
1 parent 991c5f7 commit add0967
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ def _get_board_f_flash(env):
return _normalize_frequency(frequency)


def _get_board_img_freq(env):
def _get_board_f_image(env):
board_config = env.BoardConfig()
if "build.img_freq" in board_config:
return _normalize_frequency(board_config.get("build.img_freq"))
if "build.f_image" in board_config:
return _normalize_frequency(board_config.get("build.f_image"))

return _get_board_f_flash(env)

Expand Down

0 comments on commit add0967

Please sign in to comment.