@JiwonChoi Do you have the airspeed sensor installed and want to disable it, or you don’t have the sensor at all? I’m building a VTOL which doesn’t have that sensor and in QGC I also don’t see the parameter, so my guess is that if no sensor is attached the airspeed module is not even called, but not completely sure about that
My answer was not correct, sorry for that but I did not know that things changed and I was also in your same situation
Parameters are changed since June of last year. CBRK_AIRSPD_CHK and FW_ARSP_MODE are now called SYS_HAS_NUM_ASPD and FW_USE_AIRSPD (logic is a little bit different, but the idea is the same)
So if the version you are using is not up to date with the main branch of PX4 (I have no idea on which is the default version currently running on QGC) you should set CBRK_AIRSPD_CHK = 162128 as @Dhruvil correctly said. Since this just disables the check for the sensor, but does not change the internal logic of the controller, it would just assume that no measures are available and will use FW_AIRSPD_TRIM (assuming that is the actual TAS) where needed . So you need also to set FW_ARSP_MODE = 0
I would also set ASPD_PRIMARY = -1 , but probably is not needed
Hope that this will help you