Function with a default value

//The function:
bool my_function(uint32_t timeout)
{
  //...
}

//The function definition, with the default value:
bool my_function(uint32_t timeout = 500);
extern bool my_function(uint32_t timeout = 500);

//Calling it - both of these will work:
  my_function();
  my_function(1000);
With multiple variables
//The function:
bool my_function(uint32_t some_value, uint32_t timeout)
{
  //...
}

//The function definition, with the default value:
bool my_function(uint32_t some_value, uint32_t timeout = 500);
extern bool my_function(uint32_t some_value, uint32_t timeout = 500);

//Calling it - both of these will work:
  my_function(2, );
  my_function(2, 1000)
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through resources like this. We hope you find it helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support here. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *