Проблемы с функцией PBL_IF_ROUND_ELSE

Я пытаюсь следовать руководству по созданию циферблатов, но я застрял. Я скопировал код из вики, поэтому ошибки быть не должно, но при компиляции я получаю эту ошибку

ошибка: неявное объявление функции 'PBL_IF_ROUND_ELSE' [-Werror=неявное-объявление-функции]

Я пытался погуглить, но ничего полезного не нашел. это код

#include <pebble.h>

static Window *s_main_window;
static TextLayer *s_time_layer;

static void update_time() {
  // Get a tm structure
  time_t temp = time(NULL); 
  struct tm *tick_time = localtime(&temp);

  // Write the current hours and minutes into a buffer
  static char s_buffer[8];
  strftime(s_buffer, sizeof(s_buffer), clock_is_24h_style() ? "%H:%M" : "%I:%M", tick_time);

  // Display this time on the TextLayer
  text_layer_set_text(s_time_layer, s_buffer);
}

static void tick_handler(struct tm *tick_time, TimeUnits units_changed) {
  update_time();
}

static void main_window_load(Window *window) {
  // Get information about the Window
  Layer *window_layer = window_get_root_layer(window);
  GRect bounds = layer_get_bounds(window_layer);

  // Create the TextLayer with specific bounds
  s_time_layer = text_layer_create(
      GRect(0, PBL_IF_ROUND_ELSE(58, 52), bounds.size.w, 50));

  // Improve the layout to be more like a watchface
  text_layer_set_background_color(s_time_layer, GColorClear);
  text_layer_set_text_color(s_time_layer, GColorBlack);
  text_layer_set_text(s_time_layer, "00:00");
  text_layer_set_font(s_time_layer, fonts_get_system_font(FONT_KEY_BITHAM_42_BOLD));
  text_layer_set_text_alignment(s_time_layer, GTextAlignmentCenter);

  // Add it as a child layer to the Window's root layer
  layer_add_child(window_layer, text_layer_get_layer(s_time_layer));
}

static void main_window_unload(Window *window) {
  // Destroy TextLayer
  text_layer_destroy(s_time_layer);
}


static void init() {
  // Create main Window element and assign to pointer
  s_main_window = window_create();

  // Set handlers to manage the elements inside the Window
  window_set_window_handlers(s_main_window, (WindowHandlers) {
    .load = main_window_load,
    .unload = main_window_unload
  });

  // Show the Window on the watch, with animated=true
  window_stack_push(s_main_window, true);

  // Make sure the time is displayed from the start
  update_time();

  // Register with TickTimerService
  tick_timer_service_subscribe(MINUTE_UNIT, tick_handler);
}

static void deinit() {
  // Destroy Window
  window_destroy(s_main_window);
}

int main(void) {
  init();
  app_event_loop();
  deinit();
}

Я использую CloudPebble SDK.


person Community    schedule 28.10.2015    source источник


Ответы (3)


Я понял, PBL_IF_ROUND_ELSE работает только с 3.X SDK (я использовал 2.X).

person Community    schedule 28.10.2015

"PBL_IF_ROUND_ELSE(58, 52)" Работает только с Pebble Time или SDK3.

Вы можете заменить "PBL_IF_ROUND_ELSE(58, 52)" диапазоном от 0 до 100. 0 означает, что он будет вверху экрана. 100 означает, что он будет внизу экрана.

person Ruzz    schedule 12.02.2016

Замените «PBL_IF_ROUND_ELSE(58, 52)» на 0. Это должно сработать. Я предполагаю, что вы пытаетесь запустить эту программу на версии aplite?

person Jonathon    schedule 02.11.2015