fw_util.h 994 B

1234567891011121314151617181920212223242526272829
  1. // Copyright 2021 IOsetting <iosetting(at)outlook.com>
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #ifndef ___FW_UTIL_H___
  15. #define ___FW_UTIL_H___
  16. #include "fw_conf.h"
  17. #include "fw_types.h"
  18. void UTIL_Uart1_24M_9600_Init(void);
  19. void UTIL_Uart1_24M_115200_Init(void);
  20. void UTIL_Uart1_33M1776_9600_Init(void);
  21. void UTIL_Uart1_33M1776_115200_Init(void);
  22. void UTIL_Uart1_35M_9600_Init(void);
  23. void UTIL_Uart1_36M864_9600_Init(void);
  24. void UTIL_Uart1_36M864_115200_Init(void);
  25. #endif