nfc_launchapp_rec.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /**
  2. * Copyright (c) 2015 - 2019, Nordic Semiconductor ASA
  3. *
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without modification,
  7. * are permitted provided that the following conditions are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright notice, this
  10. * list of conditions and the following disclaimer.
  11. *
  12. * 2. Redistributions in binary form, except as embedded into a Nordic
  13. * Semiconductor ASA integrated circuit in a product or a software update for
  14. * such product, must reproduce the above copyright notice, this list of
  15. * conditions and the following disclaimer in the documentation and/or other
  16. * materials provided with the distribution.
  17. *
  18. * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
  19. * contributors may be used to endorse or promote products derived from this
  20. * software without specific prior written permission.
  21. *
  22. * 4. This software, with or without modification, must only be used with a
  23. * Nordic Semiconductor ASA integrated circuit.
  24. *
  25. * 5. Any software provided in binary form under this license must not be reverse
  26. * engineered, decompiled, modified and/or disassembled.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
  29. * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30. * OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
  31. * DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
  32. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  33. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  34. * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  35. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  36. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  37. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  38. *
  39. */
  40. #include "sdk_common.h"
  41. #if NRF_MODULE_ENABLED(NFC_NDEF_LAUNCHAPP_REC)
  42. #include "nfc_launchapp_rec.h"
  43. #include <string.h>
  44. #include "nrf_error.h"
  45. #include "app_util.h"
  46. #include "nfc_ndef_record.h"
  47. /* Record Payload Type for NFC NDEF Android Application Record */
  48. const uint8_t ndef_android_launchapp_rec_type[] =
  49. {
  50. 'a', 'n', 'd', 'r', 'o', 'i', 'd', '.', 'c','o', 'm', ':', 'p', 'k', 'g'
  51. };
  52. /* Record Payload Type for NFC NDEF Windows LaunchApp record */
  53. const uint8_t ndef_windows_launchapp_rec_type[] =
  54. {
  55. 'w', 'i', 'n', 'd', 'o', 'w', 's', '.', 'c', 'o', 'm', '/', 'L', 'a', 'u',
  56. 'n', 'c', 'h', 'A', 'p', 'p'
  57. };
  58. /* Platform type used in Record Payload of NFC NDEF Windows LaunchApp record */
  59. const uint8_t ndef_windows_launchapp_plat_type[] =
  60. {
  61. 'W', 'i', 'n', 'd', 'o', 'w', 's', 'P', 'h', 'o', 'n', 'e'
  62. };
  63. #define WIN_LAUNCHAPP_EMPTY_PARAMETER 0x20 ///< The empty parameter value for the Windows LaunchApp Record.
  64. ret_code_t nfc_win_launchapp_payload_constructor(win_launchapp_payload_desc_t * p_input,
  65. uint8_t * p_buff,
  66. uint32_t * p_len)
  67. {
  68. win_launchapp_payload_desc_t * launch_desc = (win_launchapp_payload_desc_t *) p_input;
  69. uint32_t temp_len = (uint32_t)launch_desc->platform_length + launch_desc->app_id_length + 7;
  70. if (p_buff != NULL)
  71. {
  72. if (temp_len > *p_len)
  73. {
  74. return NRF_ERROR_NO_MEM;
  75. }
  76. *p_buff++ = 0x00; // platform count: 1
  77. *p_buff++ = 0x01; // -||-
  78. *p_buff++ = launch_desc->platform_length;
  79. memcpy(p_buff, launch_desc->platform, launch_desc->platform_length); // platform
  80. p_buff += launch_desc->platform_length;
  81. *p_buff++ = launch_desc->app_id_length;
  82. memcpy(p_buff, launch_desc->app_id, launch_desc->app_id_length);
  83. p_buff += launch_desc->app_id_length;
  84. *p_buff++ = 0x00; // parameters length 1B
  85. *p_buff++ = 0x01; // -||-
  86. *p_buff++ = WIN_LAUNCHAPP_EMPTY_PARAMETER; // empty parameter
  87. }
  88. *p_len = temp_len;
  89. return NRF_SUCCESS;
  90. }
  91. #endif // NRF_MODULE_ENABLED(NFC_NDEF_LAUNCHAPP_REC)