Revision 91bdafd4

View differences:

modules/DiWheelDrive_1-1/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    16
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
/**
50
 * @brief   Time delta constant for the tick-less mode.
51
 * @note    If this value is zero then the system uses the classic
52
 *          periodic tick. This value represents the minimum number
53
 *          of ticks that is safe to specify in a timeout directive.
54
 *          The value one is not valid, timeouts are rounded up to
55
 *          this value.
56
 */
57
#if !defined(CH_CFG_ST_TIMEDELTA)
58
#define CH_CFG_ST_TIMEDELTA                     50
59
#endif
60

  
61
// more common definitions in aos_chconf.h
50 62

  
51 63
/** @} */
52 64

  
modules/DiWheelDrive_1-2/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    16
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
/**
50
 * @brief   Time delta constant for the tick-less mode.
51
 * @note    If this value is zero then the system uses the classic
52
 *          periodic tick. This value represents the minimum number
53
 *          of ticks that is safe to specify in a timeout directive.
54
 *          The value one is not valid, timeouts are rounded up to
55
 *          this value.
56
 */
57
#if !defined(CH_CFG_ST_TIMEDELTA)
58
#define CH_CFG_ST_TIMEDELTA                     50
59
#endif
60

  
61
// more common definitions in aos_chconf.h
50 62

  
51 63
/** @} */
52 64

  
modules/LightRing_1-0/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    16
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
/**
50
 * @brief   Time delta constant for the tick-less mode.
51
 * @note    If this value is zero then the system uses the classic
52
 *          periodic tick. This value represents the minimum number
53
 *          of ticks that is safe to specify in a timeout directive.
54
 *          The value one is not valid, timeouts are rounded up to
55
 *          this value.
56
 */
57
#if !defined(CH_CFG_ST_TIMEDELTA)
58
#define CH_CFG_ST_TIMEDELTA                     50
59
#endif
60

  
61
// more common definitions in aos_chconf.h
50 62

  
51 63
/** @} */
52 64

  
modules/LightRing_1-2/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    16
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
/**
50
 * @brief   Time delta constant for the tick-less mode.
51
 * @note    If this value is zero then the system uses the classic
52
 *          periodic tick. This value represents the minimum number
53
 *          of ticks that is safe to specify in a timeout directive.
54
 *          The value one is not valid, timeouts are rounded up to
55
 *          this value.
56
 */
57
#if !defined(CH_CFG_ST_TIMEDELTA)
58
#define CH_CFG_ST_TIMEDELTA                     50
59
#endif
60

  
61
// more common definitions in aos_chconf.h
50 62

  
51 63
/** @} */
52 64

  
modules/NUCLEO-F103RB/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    16
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
// more common definitions in aos_chconf.h
50 50

  
51 51
/** @} */
52 52

  
modules/NUCLEO-F401RE/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    32
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
// more common definitions in aos_chconf.h
50 50

  
51 51
/** @} */
52 52

  
modules/NUCLEO-F767ZI/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    32
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
// more common definitions in aos_chconf.h
50 50

  
51 51
/** @} */
52 52

  
modules/NUCLEO-L476RG/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    32
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
// more common definitions in aos_chconf.h
50 50

  
51 51
/** @} */
52 52

  
modules/PowerManagement_1-1/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    32
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
/**
50
 * @brief   Time delta constant for the tick-less mode.
51
 * @note    If this value is zero then the system uses the classic
52
 *          periodic tick. This value represents the minimum number
53
 *          of ticks that is safe to specify in a timeout directive.
54
 *          The value one is not valid, timeouts are rounded up to
55
 *          this value.
56
 */
57
#if !defined(CH_CFG_ST_TIMEDELTA)
58
#define CH_CFG_ST_TIMEDELTA                     20
59
#endif
60

  
61
// more common definitions in aos_chconf.h
50 62

  
51 63
/** @} */
52 64

  
modules/PowerManagement_1-2/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    32
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
/**
50
 * @brief   Time delta constant for the tick-less mode.
51
 * @note    If this value is zero then the system uses the classic
52
 *          periodic tick. This value represents the minimum number
53
 *          of ticks that is safe to specify in a timeout directive.
54
 *          The value one is not valid, timeouts are rounded up to
55
 *          this value.
56
 */
57
#if !defined(CH_CFG_ST_TIMEDELTA)
58
#define CH_CFG_ST_TIMEDELTA                     20
59
#endif
60

  
61
// more common definitions in aos_chconf.h
50 62

  
51 63
/** @} */
52 64

  
modules/STM32F407G-DISC1/chconf.h
46 46
#define CH_CFG_ST_RESOLUTION                    32
47 47
#endif
48 48

  
49
// more common definition in aos_chconf.h
49
// more common definitions in aos_chconf.h
50 50

  
51 51
/** @} */
52 52

  
modules/aos_chconf.h
73 73
 *          this value.
74 74
 */
75 75
#if !defined(CH_CFG_ST_TIMEDELTA)
76
#define CH_CFG_ST_TIMEDELTA                 50
76
#define CH_CFG_ST_TIMEDELTA                 1000
77 77
#endif
78 78

  
79 79
/** @} */
tools/ide/QtCreator/QtCreatorSetup.sh
882 882
  # list all files to be deleted
883 883
  if [ -z "$modulename" ]; then
884 884
    if [ $wipe != true ]; then
885
      files=$(find "${projectdir}" -maxdepth 1 -type f | grep -E "^.+\.(includes|files|config|creator)$")
885
      files=$(find "${projectdir}" -maxdepth 1 -type f | grep -E "^.+\.(includes|files|config|creator|cflags|cxxflags)$")
886 886
    else
887
      files=$(find "${projectdir}" -maxdepth 1 -type f | grep -E "^.+\.(includes|files|config|creator|creator\.user)$")
887
      files=$(find "${projectdir}" -maxdepth 1 -type f | grep -E "^.+\.(includes|files|config|creator|cflags|cxxflags|creator(\.user(\..+)?)?)$")
888 888
    fi
889 889
  else
890 890
    if [ $wipe != true ]; then
891
      files=$(find "${projectdir}" -maxdepth 1 -type f | grep -E "^.${modulename}\.(includes|files|config|creator)$")
891
      files=$(find "${projectdir}" -maxdepth 1 -type f | grep -E "^.${modulename}\.(includes|files|config|creator|cflags|cxxflags)$")
892 892
    else
893
      files=$(find "${projectdir}" -maxdepth 1 -type f | grep -E "^.${modulename}\.(includes|files|config|creator|creator\.user)$")
893
      files=$(find "${projectdir}" -maxdepth 1 -type f | grep -E "^.${modulename}\.(includes|files|config|creator|cflags|cxxflags|creator(\.user(\..+)?)?)$")
894 894
    fi
895 895
  fi
896 896
  if [ ! -z "$files" ]; then

Also available in: Unified diff