fw_hal.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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_INC_H___
  15. #define ___FW_INC_H___
  16. #include "fw_conf.h"
  17. #include "fw_sys.h"
  18. #include "fw_rcc.h"
  19. #include "fw_mem.h"
  20. #include "fw_exti.h"
  21. #include "fw_gpio.h"
  22. #include "fw_tim.h"
  23. #include "fw_uart.h"
  24. #include "fw_adc.h"
  25. #include "fw_i2c.h"
  26. #include "fw_spi.h"
  27. #include "fw_iap.h"
  28. #include "fw_util.h"
  29. #include "fw_wdt.h"
  30. #if (__CONF_MCU_TYPE == 2 )
  31. #include "fw_pca.h"
  32. #endif
  33. #if (__CONF_MCU_TYPE == 3 )
  34. #include "fw_pwm.h"
  35. #include "fw_rtc.h"
  36. #include "fw_dma.h"
  37. #include "fw_usb.h"
  38. #endif
  39. #endif