It's the BSP_ALARM_FREQUENCY parameter, which is set in <mqx_dir>\mqx\source\bsp\<board_name>\<board_name>.h
The ticks are then set up in the BSP initialization, located at <mqx_dir>\mqx\source\bsp\<board_name>\init_bsp.c
kernel_data->TIMER_HW_REFERENCE = (BSP_SYSTEM_CLOCK / BSP_ALARM_FREQUENCY); _time_set_ticks_per_sec(BSP_ALARM_FREQUENCY); _time_set_hwticks_per_tick(kernel_data->TIMER_HW_REFERENCE); _time_set_hwtick_function(_bsp_get_hwticks, (pointer)NULL);